tags:

views:

1073

answers:

4

Hi,

I need a command-line utility that can do WebDAV upload (HTTP PUT).

Ronen

+2  A: 

cURL will do it for you.

curl -T filetoput.xml http://www.url.com/
Mike McQuaid
+3  A: 

The most commonly used command line HTTP utility seems to be cURL, which will do PUT with its -T option. You would need to understand quite a bit of the WebDAV protocol to do more than upload with it, though.

Carey
+1  A: 

For unix (and Windows with Cygwin installed) you can use Cadaver

Matthew Lock
+2  A: 

this overview contains a thourough list of webdav server and clients.

I'd opt for cadaver or, if my needs were very specific, a python script using the PyWebDAV library.

Steen