vote up 1 vote down star

How can I make a script that, once a day, will upload a file via ftp to several different servers, then take note (in a log) of how much time the uploads took?

Thanks to Rajax I have the cronjob set up to execute this so far as the script, let's say it's called ftpScript.sh:

#!/bin/sh

HOST='ftp.users.qwest.net'
USER='MYUSERNAME'
PASSWD='MYPASSWORD'
FILE='filename.gif'

ftp -n $HOST <<END_SCRIPT
quote USER $USER
quote PASS $PASSWD
put $FILE

quit
END_SCRIPT
exit 0

Where do I put this part?

time -a output.log ftpScript.sh
flag

Add another script cronJob.sh which runs the time command and then run that as the cron job. – rajax Oct 1 at 0:32

1 Answer

vote up 1 vote down check

You can use cron to execute a script once a day.

Use command-line ftp to upload the files and the time command to time how long it took.

Appending time output to log:

time -a output.log ftpScript.sh
link|flag
Can the output of the time command be redirected to a file? – James Black Sep 30 at 0:45
Yes, added to answer – rajax Sep 30 at 0:48
Thanks James, I was going to ask the same question! – pg Sep 30 at 0:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.