
June 15th, 2003, 04:35 PM
|
|
|
|
Join Date: Apr 2007
Location: Medina, Ohio
Posts: 233
Time spent in forums: < 1 sec
Reputation Power: 2
|
|
|
crontab extra information
Heres kida an addon to my tutorial:
To echo the output to the console change the '> /dev/null' to: '> /dev/console'
This may change depending on your flavor of BSD or LINUX.
Another thing is you can echo it out into the console:
'> /dev/tty'.
This can be a security risk because if a diffrent person is logged into /dev/tty they would get the output of the program.
To solve that you could create a script that would log what the output.
This script could run threw the 'ident' or 'xident' program. it could probly be made VIA php or c.
This is a bit of a waist because you could output it to a file ('> /root/myfile')
Thats all.
|