Reputation:
i want to automate the task of uploading of a file at FTP site "uploads.google.com" how can i achive this
Upvotes: 0
Views: 1959
Reputation: 554
One of the example is depicted as follows :
binary cd mput file.*
ftp -i -v -s:
ex: ftp -i -v -s:ftp_cmd.txt updates.google.com
Now, when you execute this batch file, it will put all files with format file.* to the specified directory.
Upvotes: 1