欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

crontab: "/usr/bin/vi" exited with status 1

程序员文章站 2022-03-02 13:32:06
...

方法1:

在.vimrc 最下面加入

                                                             

autocmd filetype crontab setlocal nobackup nowritebackup

crontab: "/usr/bin/vi" exited with status 1



方法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