将内容从 Github 传送到 crontab

将内容从 Github 传送到 crontab

我现在不在测试环境中,但我希望下载一个 Bash 脚本,curl然后将其内容加载到 crontab 中。

Github原始文档中显示的内容例如:

0 0 * * * ... 
0 0 * * 0 ...

您觉得这个代码模板还好吗?

curl -O https://raw.githubusercontent.com/user/repo/master/file.sh | crontab

答案1

curlstdout默认情况下输出为

curl URL

足够。至少在 macOS 上crontab需要-读取,stdin所以我们最终得到

curl URL | crontab -

将未经验证的数据从 URL 直接加载到 Cron 中是否明智是另一个问题......

相关内容