https://blog.csdn.net/love_521_/article/details/125497466
#不进行更新可能会出现一些问题
apt-get update && apt-get install cron
which service
/usr/sbin/service cron start #root用户可以直接使用这个命令
sudo /usr/sbin/service cron start # 普通用户
查看当前时间
date
https://www.runoob.com/w3cnote/linux-crontab-tasks.html
crontab -e
编写工作表
不一定按照服务器时间,我感觉像是根据电脑时间
10 15 * * * echo "hello" > ~/i1510
https://blog.csdn.net/lendsomething/article/details/109008205
使用echo不会看到输出
只有重定向到文件中才行