alias

Create a shortcut for a long command

alias ll='ls -lh --color=auto' creates a shortcut. Add to ~/.bashrc to persist. alias without arguments lists all current aliases.

Example

$ alias gs='git status'
$ alias ll='ls -lh'
Tip: Type it yourself in the terminal below - reading is not the same as doing.