In order to setup cron jobs for a user other than the root, use the following command which should open a file in vi editor that schedules cron job for that particular user.
crontab -u <user> -e
Later, if you wanted to view a list of cron jobs scheduled by a user, use the following command.
crontab -u <user> -l
crontab -u <user> -e
Later, if you wanted to view a list of cron jobs scheduled by a user, use the following command.
crontab -u <user> -l
Comments