Answers for "crontab use nano"

2

crontab use nano

// nano
export VISUAL=nano; crontab -e

// vim
export VISUAL=vim; crontab -e
Posted by: Guest on September-24-2020
0

open crontab in nano

EDITOR=nano crontab -e. This will use nano only for that execution. 
alias crontab='EDITOR=nano /usr/bin/crontab' This will work on your current session
Posted by: Guest on August-17-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language