mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-02 11:17:59 +01:00
351 B
351 B
alias
Creates an alias for a word when used as the first word of a command
- creating a generic alias
alias {{word}}="{{command}}"
- remove an aliased command
unalias {{word}}
- full list of aliased words
alias -p
- turning rm an interative command
alias {{rm}}="{{rm -i}}"
- overriding la as ls -a
alias {{la}}="{{ls -a}}"