Home > Article > System Tutorial > How to delete crontab scheduled tasks in Linux?
I want to shut down the crontab schedule service created in Linux. How to shut it down? Let’s take a look at the detailed tutorial below.
1. View scheduled tasks
1. Open the terminal command window
2. Enter the command: crontab -lView the created scheduled tasks
2. Delete scheduled tasks
1. We use the command: crontab -e
2. Press Enter to enter the planned service configuration interface of the crontab command
3. Use "dd" directly, delete scheduled tasks
4. Enter the command “:wq!”Save and exit
5. Use crontab -l to check again. There will be no scheduled tasks
The above is the detailed content of How to delete crontab scheduled tasks in Linux?. For more information, please follow other related articles on the PHP Chinese website!