Arcticooling Asked: 2018-01-13 09:59:08 +0800 CST2018-01-13 09:59:08 +0800 CST 2018-01-13 09:59:08 +0800 CST 将 Github 中的内容通过管道传输到 crontab 772 我现在不在测试环境面前,但我希望下载一个 Bash 脚本,curl然后将其内容加载到 crontab 中。 Github 原始文档中出现的内容例如: 0 0 * * * ... 0 0 * * 0 ... 你觉得这个代码模板还好吗? curl -O https://raw.githubusercontent.com/user/repo/master/file.sh | crontab pipe cron 1 个回答 Voted Best Answer nohillside 2018-01-13T10:53:39+08:002018-01-13T10:53:39+08:00 curlstdout默认输出为 curl URL 足够的。至少在 macOS 上crontab需要-读取,stdin所以我们最终得到 curl URL | crontab - 将未经验证的数据从 URL 直接加载到 Cron 中是否明智是另一个问题……
curl
stdout
默认输出为足够的。至少在 macOS 上
crontab
需要-
读取,stdin
所以我们最终得到将未经验证的数据从 URL 直接加载到 Cron 中是否明智是另一个问题……