The crontab command is a command line interface to cron.
crontab -l ### lists the current user’s crontab crontab -r ### removes a crontab crontab -e ### edits the crontab
The -u flag can be used with the above to specify a user:
crontab -u foo -l ### lists’s the foo user’s crontab