Code: Select all
0,10,20,30,40,50 * * * * /home/joshua/RedRaven/RedRaven.botchk >/dev/null 2>&1
0,10,20,30,40,50 * * * * /home/joshua/BlueRaven/BlueRaven.botchk >/dev/null 2>&1
0,10,20,30,40,50 * * * * /home/joshua/Serenac/Serenac.botchk >/dev/null 2>&1
0,10,20,30,40,50 * * * * /home/joshua/BlueRaven/stats >/dev/null 2>&1
0,10,20,30,40,50 * * * * /home/joshua/pisg-0.48/pisg >/dev/null 2>&1
the main thing i want to get to work is the "stats" and "pisg"
i made the following scripty called "stats" it connects to the ftp logs in drops the files and quits
Code: Select all
#!/bin/sh
cat <<_EOF_ | ftp -n
open ftp.MYFTP.net
user MYLOGIN MYPASSWORD
put /home/joshua/pisg-0.48/utgames.html utgames.html
put /home/joshua/pisg-0.48/bot.html bot.html
put /home/joshua/pisg-0.48/raven.html raven.html
put /home/joshua/pisg-0.48/floridachat.html floridachat.html
bye
_EOF_
does anyone have any suggestions?