我正在使用 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