Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cron Daemon in SCO Unix

Status
Not open for further replies.

gpippin

Programmer
Jan 11, 2002
1
US
I am a Linux user,
wanting to use cron on a DAC 6000, which is running SCO Unix

Is there a cron daemon in SCO, does it have the same implementation and setup as in linux?

All info is welcome

Thanks in Advance

gpippin
 
It's not the SAME as Linux, but all Unixes have cron.

For details, see
but to just create a simple cron job I suggest

crontab -l > $HOME/mycon
vi $HOME/mycron
(add your job)
crontab $HOME/mycron


You do have to be aware that Linux extends traditional cron syntax- so there differences in the line you add- read the man page for crontab

Also- Linux encourages editing crontabs directly because cron watches for changes- traditional nix cron does NOT watch- so the procedure above is necessary.
Tony Lawrence
SCO Unix/Linux Resources tony@pcunix.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top