Cron

當我輸入“crontab -e”時,cron 失敗

  • September 21, 2016
/bin/sh: 1: subl: not found
crontab: "subl" exited with status 127

最後一個系統管理員必須安裝了 sublime。我只是希望它在沒有錯誤的情況下在 shell(sh、bash、zsh)中打開。

我需要編輯什麼才能使其成為永久更改?

謝謝

是的,subl 可能是崇高的。

改變它

在某些系統上你可以執行(當然是 Ubuntu):

# sudo update-alternatives --config editor

還有使用者特定的 select-editor 命令:

$ select-editor

您可以設置環境變數,而不是在 .bashrc 或系統範圍的 /etc/profile、/etc/profile.d/something.sh 等中覆蓋這些設置…:

export VISUAL=vim
export EDITOR="$VISUAL"

引用自:https://serverfault.com/questions/804475