There are lots of people that love using Vim in command line. I prefer Nano and this is a quick guide to changing your system to use Nano.
EDITOR=nano crontab -e
To save permanently you can run the following command to set Nano as the default editor.
export VISUAL=nano; crontab -e
To revert to Vim run the following if you prefer Vim is better.
export VISUAL=vim
Clive Walkden
Posted:
Latest Articles

Explore the evolution of Magento 2 through its major releases, detailing features added, popularity metrics, and issues encountered.
Author

A simple to follow installation guide for NordLayer VPN
Author

Learn efficient ways to import MySQL databases on Linux using the mysql command-line client. Explore the --source option and < operator for seamless data migration. Master MySQL imports on Linux with our comprehensive guide.
Author