Cron
將 Github 中的內容通過管道傳輸到 crontab
我現在不在測試環境面前,但我希望下載一個 Bash 腳本,
curl
然後將其內容載入到 crontab 中。Github 原始文件中出現的內容例如:
0 0 * * * ... 0 0 * * 0 ...
你覺得這個程式碼模板還好嗎?
curl -O https://raw.githubusercontent.com/user/repo/master/file.sh | crontab
curl``stdout
預設輸出為curl URL
足夠。至少在 macOS 上
crontab
需要-
讀取,stdin
所以我們最終得到curl URL | crontab -
將未經驗證的數據從 URL 直接載入到 Cron 中是否明智是另一個問題……