关于脚本和定时任务的详解不在这里,只记录如何操作增加到定时任务中。
> vi test.sh
>
#! /bin/bash
echo "hello crontab" >> /ftp/hello.txt
>wq //保存即可
chmod 777 test.sh
./test.sh
cd /ftp
vi hello.txt
crontab -e
*/1 * * * * /ftp/test.sh
crontab -l
vi /ftp/hello.txt
OK,这样就搞定了,剩下的就是如何来写脚本啦,至于定时的详解网上很多,一查就明白了。
后面在执行的时候,发现自己写的定时执行的命令不执行。
service crond restart
//进入编辑
crontab -e
//增加测试命令
*/1 * * * * echo 111 > /ftp/echo.txt
//然后经过1分钟后查看是否有输出
由于crontab
的环境与linux执行的环境不同,所以一定要写全路径,比如node
的路径也要写全路径.
最后的命令如下:
#!/bin/bash
/root/.nvm/versions/node/v9.11.1/bin/node /ftp/test.js
以上。2019年5月23日 更新
转载请注明出处: https://chrunlee.cn/article/linux-add-crontab-task.html