An operator allows you to specifying multiple values in a field. There are three operators:
1. The asterisk (*) : This operator specifies all possible values for a field. For example, an asterisk in the hour time field would be equivalent to every hour or an asterisk in the month field would be equivalent to every month.
2. The comma (,) : This operator specifies a list of values, for example: "1,5,10,15,20, 25".
3. The dash (-) : This operator specifies a range of values, for example: "5-15" days , which is equivalent to typing "5,6,7,8,9,....,13,14,15" using the comma operator.
To list your crontab jobs use the command
# crontab -l
To remove or erase all crontab jobs use the command:
# crontab -r
This command will removes your own crontab file.
$ crontab -r [username]
where username specifies the name of the user's account for which you want to remove a crontab file. Removing crontab files for another user requires superuser privileges.