✗ crontab -e
crontab: no crontab for xxx - using an empty one
crontab: "/usr/bin/vi" exited with status 1
✗ crontab -l
crontab: no crontab for xxx
原因:
系统没有安装vi
解决:
open .bash_profile
添加:
export EDITOR=vim
重新载入:
source .bash_profile
ok
重新执行创建crontab
网友评论