How to specify nano or vim as editor for crontab file

July 9, 2021 . 1 MIN READ

If you want to specify an editor, when opening crontab file. And not just use the default for your system. You need to use VISUAL environment variable.

Export the value of VISUAL and then run crontab -e command.

Specify nano as the editor for crontab file

export VISUAL=nano; crontab -e

Specify vim as the editor for crontab file

export VISUAL=vim; crontab -e

Of course you need to have vim or nano installed in your system if you want to use them.

permalink

If you enjoyed the article, please share it

https://www.garron.me/en/bits/specify-editor-crontab-file.html

Leave a Reply

Your email address will not be published. Required fields are marked *