|
You don't edit the cron file directly, you use the command
'crontab -e'
This command edits the default systemwide cron file, if you want to edit a specific user's file, you can use
'crontab -u $USER -e'
..obviously substituting $USER for the username you want to use. If you want to edit a file by hand and have it become part of your cron, just point cron at it with the
'crontab filename'
command. This is what I do, I keep a personal .crontab file in my home directory and just run 'crontab ~/.crontab'. Enjoy!
|