Formatted all pages according to guidelines.

This commit is contained in:
Ruben Vereecken
2016-01-07 18:31:27 +01:00
parent efa4cbd4de
commit 066582e8ea
284 changed files with 1338 additions and 1364 deletions

View File

@@ -1,24 +1,24 @@
# alias
> Creates an alias for a word when used
> as the first word of a command
> Creates an alias for a word when used.
> As the first word of a command.
- creating a generic alias
- Creating a generic alias:
`alias {{word}}="{{command}}"`
- remove an aliased command
- Remove an aliased command:
`unalias {{word}}`
- full list of aliased words
- Full list of aliased words:
`alias -p`
- turning rm an interative command
- Turning rm an interative command:
`alias {{rm}}="{{rm -i}}"`
- overriding la as ls -a
- Overriding la as ls -a:
`alias {{la}}="{{ls -a}}"`