2014-02-21 21:18:09 +00:00
|
|
|
# alias
|
|
|
|
|
2017-01-04 21:52:02 +00:00
|
|
|
> Creates aliases -- words that are replaced by a command string.
|
|
|
|
> Aliases expire with the current shell session, unless they're defined in the shell's configuration file, e.g. `~/.bashrc`.
|
2014-02-21 21:18:09 +00:00
|
|
|
|
2016-01-16 14:12:05 +00:00
|
|
|
- Create a generic alias:
|
2014-02-21 21:18:09 +00:00
|
|
|
|
|
|
|
`alias {{word}}="{{command}}"`
|
|
|
|
|
2017-01-04 21:52:02 +00:00
|
|
|
- View the command associated to a given alias:
|
|
|
|
|
|
|
|
`alias {{word}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Remove an aliased command:
|
2014-02-21 21:18:09 +00:00
|
|
|
|
|
|
|
`unalias {{word}}`
|
|
|
|
|
2016-10-29 16:03:11 +01:00
|
|
|
- List all aliased words:
|
2014-02-21 21:18:09 +00:00
|
|
|
|
|
|
|
`alias -p`
|
|
|
|
|
2016-10-29 16:03:11 +01:00
|
|
|
- Turn rm into an interactive command:
|
2014-02-21 21:18:09 +00:00
|
|
|
|
|
|
|
`alias {{rm}}="{{rm -i}}"`
|
|
|
|
|
2016-10-29 16:03:11 +01:00
|
|
|
- Create `la` as a shortcut for `ls -a`:
|
2014-02-21 21:18:09 +00:00
|
|
|
|
2015-10-22 08:31:52 +01:00
|
|
|
`alias {{la}}="{{ls -a}}"`
|