a shell script for quick uploading one f …

a shell script for quick uploading one file via ftp:

#!/bin/bash
ftp -v -n http://ftp.server.com < user yourUserName yourPassword
mput $1
bye
END