/home/user/test.sh"|定时任务- 在 Linux 中将作业添加到 c-6ren">
gpt4 book ai didi

linux - 如何使用 bash 脚本将 crontab 作业添加到 crontab?

转载 作者:可可西里 更新时间:2023-11-01 11:48:34 25 4
gpt4 key购买 nike

我尝试了以下命令,crontab 停止运行任何作业:echo "@reboot/bin/echo 'test' >/home/user/test.sh"|定时任务-

在 Linux 中将作业添加到 crontab 的正确方法是什么?

最佳答案

我建议你阅读 Cron and Crontab usage and examples .

你可以运行这个:

➜ ( printf -- '0 4 8-14 * *  test $(date +\%u) -eq 7 && echo "2nd Sunday"' ) | crontab
➜ crontab -l
0 4 8-14 * * test $(date +\0) -eq 7 && echo "2nd Sunday"

或者

#!/bin/bash
cronjob="* * * * * /path/to/command"
(crontab -u userhere -l; echo "$cronjob" ) | crontab -u userhere -

希望这对您有所帮助。

关于linux - 如何使用 bash 脚本将 crontab 作业添加到 crontab?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42198960/

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