gpt4 book ai didi

bash - 使用 bash 脚本将作业添加到 incrontab

转载 作者:太空宇宙 更新时间:2023-11-03 17:09:09 24 4
gpt4 key购买 nike

我使用的是 Ubuntu 16.04.1 LTS。我已经安装了 incron 并将 root 添加到 incron.allow。

通常我使用 sudo incrontab -e 来使用编辑器添加一个 incron 作业。

我需要一个可以从脚本运行的命令,该脚本会将这一行直接添加到 incrontab:

/home/ci-server/DB_Backups IN_MOVED_TO mv /home/ci-server/DB_Backups/$# /home/backup/$#

通过 sudo incrontab -l 显示此行后,一切都应该顺利进行。

我找到了几个使用 cron 的示例,但关于 incron 的信息很少。

最佳答案

您可以通过使用以下内容创建一个名为 incron.sh 的脚本来执行此操作:

#create a new file named incron.txt that lists the incron job
sudo echo '/home/ci-server/DB_Backups IN_MOVED_TO mv /home/ci-server/DB_Backups/$# /home/backup/$#' > /home/ci-server/scripts/incron/incron.txt
#add the job(s) listed in our newly created incron.txt to the incrontab
sudo incrontab -u root /home/ci-server/scripts/incron/incron.txt

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

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