Which command with all parameters and arguments, can be used by root to erase the cron job list
for the user fred?

Answer: crontab -u
Explanation:
fred -rFrom the crontab manpage
-u Specify the name of the user
-r Remove the current crontab
You must be logged in to post a comment.
#crontab -r -u fred
0
0