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:
-TThe switch that tells curl this is a transfer-uYour username and password, seperated by a colon. ‘:’