gpt4 book ai didi

bash - 将条目插入 crontab 除非它已经存在(如果可能的话作为单行)

转载 作者:行者123 更新时间:2023-11-29 08:54:14 25 4
gpt4 key购买 nike

<分区>

将条目插入/etc/crontab 的首选方法是什么,除非它存在,最好使用单行代码?

这是我希望放入/etc/crontab 中的示例条目,除非它已经存在于其中。

*/1 *  *  *  * some_user python /mount/share/script.py

我在 CentOS 6.6 上,到目前为止我有这个:

if grep "*/1 *  *  *  * some_user python /mount/share/script.py" /etc/crontab; then echo "Entry already in crontab"; else echo "*/1 *  *  *  * some_user python /mount/share/script.py" >> /etc/crontab; fi 

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com