Create aliases - words that are replaced by a command string. Aliases expire with the current shell session unless defined in the shell’s configuration file, e.g.
~/.bashrcfor Bash or~/.zshrcfor Zsh. See also:unalias. More information: https://manned.org/alias.
alias
alias {{word}}="{{command}}"
alias {{word}}
unalias {{word}}
rm into an interactive command:alias {{rm}}="{{rm --interactive}}"
la as a shortcut for ls --all:alias {{la}}="{{ls --all}}"