Cron

將 Github 中的內容通過管道傳輸到 crontab

  • January 12, 2018

我現在不在測試環境面前,但我希望下載一個 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 中是否明智是另一個問題……

引用自:https://unix.stackexchange.com/questions/416636