Sal,. /etc/crontab is the system level file, and you wouldn't expect to see your changes there. User crontabs are in /var/spool/cron/crontabs, but you won't be able to read that as a user, just as root, and you definitely don't want to edit them directly.
Try 'crontab -l' to list your user cron file. Using 'crontab -e' should create copy of what is in /var/spool/cron/crontab, and, when you save, put it back in place. You should see a message in the console "crontab: installing new crontab", and, if you look in /var/log/cron.log, a sequence like this:
Code:
Jun 24 13:06:28 speedy crontab[11270]: (steveg) BEGIN EDIT (steveg)
Jun 24 13:06:35 speedy crontab[11270]: (steveg) REPLACE (steveg)
Jun 24 13:06:35 speedy crontab[11270]: (steveg) END EDIT (steveg)
Jun 24 13:07:01 speedy /usr/sbin/cron[2833]: (steveg) RELOAD (crontabs/steveg)
If there's a problem, you should see an error message.