Crontab 在哪里?Ubuntu 16.04

Crontab 在哪里?Ubuntu 16.04

我一直在尝试从此视频中了解如何使用 crontab 添加作业:

https://www.youtube.com/watch?v=vrPGRE6FV9g

很简单也很容易理解,但我在 etc 中找不到 crontab?实际上,一些视频似乎也提到了 crontab。似乎所有视频都很旧,不适用于 Ubuntu 16.04。

那么,如果有的话,它在哪里?如果没有,有人有 16.04 的教程可以让我学习吗?

谢谢!

编辑:抱歉,我找到了。我正在寻找 etc/ 中的物理文件夹但它不是一个文件夹!谢谢大家。

答案1

sudo nano /etc/crontab 

... 将允许您添加 cronjobs。其中有一些注释来解释基础知识。它还已经包含了每日、每周和每月作业的方法。


编辑:这是文件:

 more /etc/crontab 
# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user  command
17 *    * * *   root    cd / && run-parts --report /etc/cron.hourly
25 6    * * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --repor
t /etc/cron.daily )
47 6    * * 7   root    test -x /usr/sbin/anacron || ( cd / && run-parts --repor
t /etc/cron.weekly )
52 6    1 * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --repor
t /etc/cron.monthly )
#

相关内容