1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 05:37:58 +01:00
tldr/pages/common/alias.md
2015-10-23 08:02:34 +08:00

24 lines
351 B
Markdown

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