Linux common commands-50: crontab

The crontab command is used to submit and manage user tasks that need to be executed periodically, similar to the scheduled tasks under windows .

Syntax format: crontab [parameter]

Common parameters:

Example

 # 显示计划任务crontab -l # 编辑计划任务crontab -e

The format of the scheduled task is

 minute hour day month week command

Respectively: time-sharing sun-month-week commands

This article is reprinted from https://xugaoxiang.com/2022/06/14/linux-cmds-50-crontab/
This site is for inclusion only, and the copyright belongs to the original author.

Leave a Comment