Hi there
Has anyone a link to a wget script that i can run a cronjob on.
I know what i need in the script and can make it all work from the command line.
Basics are, i have a few friend thats can not get to grips with FTPing Clines on to there boxes, so i was going to buy the clines then add them to a file that would be uploaded on to my server, then i could get the cron to fetch the new file every x mins.
This is what i have done
#!/bin/sh
cd /var/etc
rm test.txt
wget "http://exampledomain.co.uk/test.txt"
cd /
echo "Done"
But when i put in to a file called .sh it fails, i get -sh: cccamwget.sh not found
I must have missed something
Thanks in advance
A
Has anyone a link to a wget script that i can run a cronjob on.
I know what i need in the script and can make it all work from the command line.
Basics are, i have a few friend thats can not get to grips with FTPing Clines on to there boxes, so i was going to buy the clines then add them to a file that would be uploaded on to my server, then i could get the cron to fetch the new file every x mins.
This is what i have done
#!/bin/sh
cd /var/etc
rm test.txt
wget "http://exampledomain.co.uk/test.txt"
cd /
echo "Done"
But when i put in to a file called .sh it fails, i get -sh: cccamwget.sh not found
I must have missed something
Thanks in advance
A
Comment