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. ‘:’