我现在不在测试环境中,但我希望下载一个 Bash 脚本,curl
然后将其内容加载到 crontab 中。
Github原始文档中显示的内容例如:
0 0 * * * ...
0 0 * * 0 ...
您觉得这个代码模板还好吗?
curl -O https://raw.githubusercontent.com/user/repo/master/file.sh | crontab
答案1
curl
stdout
默认情况下输出为
curl URL
足够。至少在 macOS 上crontab
需要-
读取,stdin
所以我们最终得到
curl URL | crontab -
将未经验证的数据从 URL 直接加载到 Cron 中是否明智是另一个问题......