Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Command-line utility for WebDAV upload

Tags:

webdav

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

like image 911
rperez Avatar asked Jul 30 '09 08:07

rperez


People also ask

Which command is use to upload a file in a command line?

At the command prompt, enter bin to set the upload mode to binary. At the command prompt, enter put followed by the name of the file you want to upload. For example, to upload a file named MyDumpFiles. zip, enter put MyDumpFiles.

Is WebDAV still supported?

Using the WebDAV Redirector | Microsoft Learn. This browser is no longer supported. Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.

What is WebDAV FTP?

WebDAV is a more modern protocol than FTP and can be seen as the successor to the FTP protocol. Unlike SMB/CIFS, WebDAV can be used from mobile devices such as iPhone, iPod, iPad, Android, and Blackberry -- that is, you can work directly on files in your embedded devices using any mobile device.


1 Answers

cURL will do it for you.

curl -T filetoput.xml http://www.url.com/filetoput.xml 
like image 119
Mike McQuaid Avatar answered Oct 06 '22 01:10

Mike McQuaid