0 23 * * * /path/to/backup/script.sh
0 0 * * 1 echo "" > /path/to/log/file.log
0 16 * * 6 /path/to/script.sh
/30 * * * * /path/to/script.sh
0 0 1 * * /path/to/script.sh
在 crontab
文件中,每行代表一个周期性任务,每列分别表示任务的执行时间、执行的命令等信息。可以使用 crontab -e
命令来编辑 crontab
文件,使用 crontab -l
命令来列出当前用户的 crontab
文件内容,使用 crontab -r
命令来删除当前用户的 crontab
文件。