mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-06 14:45:18 +00:00
19 lines
314 B
Plaintext
19 lines
314 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# unalias
|
|
|
|
> Remove aliases.
|
|
> See also: `alias`.
|
|
> More information: <https://www.gnu.org/software/bash/manual/bash.html#index-unalias>.
|
|
|
|
- Remove an alias:
|
|
|
|
`unalias {{alias_name}}`
|
|
|
|
- Remove all aliases:
|
|
|
|
`unalias -a`
|