1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 13:18:07 +01:00
tldr/pages/common/alias.md
2014-03-04 23:28:29 +11:00

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}}"