crontab: "/usr/bin/vi" exited with status 1
程序员文章站
2022-03-02 13:32:06
...
方法1:
在.vimrc 最下面加入
autocmd filetype crontab setlocal nobackup nowritebackup
方法2 :如果上面的方法不管用 用nano先编辑下把
export EDITOR=nano
方法三:
1) .bash_profile添加
alias crontab="VIM_CRONTAB=true crontab"
2) .vimrc添加
if $VIM_CRONTAB == "true"
set nobackup
set nowritebackup
endif
记得让环境变量生效 source ~/.bash_profile