The -r option will remove the current user's cron table:
$ crontab -r
The -u option specifies the crontab to remove. You must be a root user to remove another user's crontab:
# crontab -u slynux -r
Linux Shell Scripting Cookbook - Third Edition
by Shantanu Tushar
Published by
Packt Publishing, 2017
The -r option will remove the current user's cron table:
$ crontab -r
The -u option specifies the crontab to remove. You must be a root user to remove another user's crontab:
# crontab -u slynux -r