How to remove or delete single cron job using linux command?

I have created cron jobs for my site which is listed below and they are working fine. I print all cron job by using this PHP script:

$cronfiles=exec('crontab -l',$output);
echo "<pre>";
print_r($output);

Which outputs:

[0] => 0 0 * * * wget php -q
[1] => 0 0 * * * wget php -q
[2] => 0 0 * * * wget php -q
[3] => * * * * * wget php -q

Now I want to delete or remove a single cron job from my server through command. For example I want to remove cron job "0 0 * * * wget php -q " from server.

I tried crontab -r command which removes all cron job from my server but i want to remove specific cron job.

Can you please help me for solution?

8 Answers

  1. To add a job to crontab:

    (crontab -u mobman -l ; echo "*/5 * * * * perl /home/mobman/test.pl") | crontab -u mobman -
  2. To remove a job from crontab:

    crontab -u mobman -l | grep -v 'perl /home/mobman/test.pl' | crontab -u mobman -
  3. Remove everything from crontab:

    crontab -r

Nothing is tricky: - is STDOUT in Linux!

5

From a root prompt type

crontab -e

You can now edit the file and remove the line you want remove. You can also use this to edit crontab for users if you have the prompt for that user.

By the way: I prefer to add cronjobs to /etc/crontab. Seems a bit more flexible to me.

3

View Users Cronjob

Use the following syntax to view waqleh user's cronjob:

crontab -u waqleh -l

View current user's Cronjob

Just type the following command:

crontab -l

Specific user's cron file

crontab -u USERNAME -l

This should list the contents of the crontab script.

View /etc/crontab

A cronjob can be also run from /etc/crontab file. To view it, enter:

less /etc/crontab

Remove all cron jobs

If and only if you want to stop all cron jobs, you can remove them entirely with:

crontab -r

This removes the entire crontab file for current user so be careful if you've got other cron jobs listed in there!

Add/Edit/Delete cron job(s)

Your user's cron file

crontab -e

Specific user's cron file

crontab -u USERNAME -e

each line represent a cron job. You can remove any cron (if you are using nano by clicking ctrl+k) then save and exit

crontab -l | grep -v 'wget php -q | crontab -

crontab -l lists the current crontab jobs

grep -v filter some line

crontab - adds all the printed stuff into the crontab file.

To comment out the cron job at say line 2, use this command in your shell:

crontab -l | sed '2 s/^/#/g' | crontab -

Replace the number 2 by the line number of your choice, or remove it altogether to comment out all the jobs.

It can be programmatically called via a cron job itself, for instance to comment all jobs at 12:00, add this line to your crontab:

0 12 * * * crontab -l | sed 's/^/#/g' | crontab -
1

You can run crontab without arguments, and feed it the new crontab via stdin.

2

For those who like me can't get out of vi:

EDITOR=nano crontab -e

In editor you can delete/change everything what you want

The best way to go about removing individual crontab jobs is simply to go into the script and comment out the line of script that performs the operation.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like