Frequently Used Commands
Frequently Used
# view list of alias alias # renew current shell as new exec bash exec zsh reset exec "$SHELL"
Set default editor in shell
export EDITOR=vim;
Moving around CLI
# Move ## move to beginning of command line ctrl + shift + A ## move to end of command line ctrl + shift + E # Delete ## Delete current word ctrl + w ## Delete current command ctrl + q # Clear ## clear current console messages cmd + k
Command History
Start keyword search for previous CLI commands. repeat pressing ctrl + r
to cycle through list of matching commands
ctrl + r