如何使用 cron 编辑文件中的某一行?

如何使用 cron 编辑文件中的某一行?

我正在使用 Ubuntu 终端,我想将此告诉我的 crontab;

转到test.cfg文件,打开它,将第 35 行替换为x

这可能吗?我找遍了也没找到任何东西。

答案1

/path/to/test.cfg 要用文本替换文件中的第 35 行,x请执行以下命令:

sed -i '35 c x' /path/to/test.cfg

为了让它在三月份的星期日每五分钟运行一次,请通过以下方式创建 cronjob crontab -e

*/5 * * 3 0 /bin/sed -i '35 c x' /path/to/test.cfg

相关内容