linxu定时任务使用crontab,编辑crontab可以直接编辑:crontab -e;也可以直接读取文件 crontab file。这两种操作都不需要特殊权限sudo。区别在于,crontab -e只能登录之后界面操作;crontab file可以远程执行。
举例:ssh [email protected] ‘touch file; crontab file‘。或者先使用scp把file放入远程服务器上,然后再执行ssh [email protected] crontab file
原文地址:https://www.cnblogs.com/shengulong/p/9086164.html
时间: 2024-10-27 19:39:50