crontab

hi All,Can anyone point me out how to add a new crontab without deleting the existing crontabs..if the usage is crontab -e, then how can i save the changes and exit?Regards,Scotty
[214 byte] By [s@mira123a] at [2007-11-27 5:34:13]
# 1
Crontab -e uses the editor set in the enironmental variable $EDITOR, if its not set, the crontab will be edited with the 'ed' editor, which isn't very userfriendly.To change editor, simply set $EDITOR to something else, such as:EDITOR=viexport EDITOR .7/M.
mAbrantea at 2007-7-12 15:02:16 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...
# 2
I do it a different way.crontab -l > [filename]Then edit and make copies of that file as you require using whichever editor you prefer. To then replace the user's (the one you are logged in as) crontab file with your new one.crontab < [filename]
thelazera at 2007-7-12 15:02:16 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...