Crontab在哪里?Ubuntu 16.04

我一直在试图弄清楚如何使用crontab从这个视频中添加一个工作。

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

很容易理解,但我找不到etc中的crontab?实际上,有一些视频也提到了crontab。似乎所有的视频都是过时的,不适用于Ubuntu 16.04。
那么,如果有的话,它在哪里?如果没有,有人有一个我可以参考的16.04教程吗?
谢谢!
编辑:对不起,朋友们,我找到了。我一直在寻找etc/下的一个物理文件夹,但原来它并不是文件夹!谢谢大家。

1使用crontab -e来设置定时任务,使用crontab -l来查看您已经设置的任务。 - troylatroy
我认为/etc/contact是更好的选择。一个地方管理所有的cronjobs。 - Rinzwind
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 )
#