Upload files to a FTP server using curl

How to upload files to a FTP server using curl

A simple tip for anyone, uploading files using the curl command line tool.

curl -T filename.ext -u username:password ftp://ftpserver.com

The command explained:

* -T The switch that tells curl this is a transfer
* -u Your username and password, seperated by a colon. ‘:’

g33kadmin

I am a g33k, Linux blogger, developer, student and Tech Writer for Liquidweb.com/kb. My passion for all things tech drives my hunt for all the coolz. I often need a vacation after I get back from vacation....

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.