pavement

Unalias

From FreeBSDwiki
Revision as of 04:57, 18 July 2005 by Jimbo (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

The unalias command is used to remove aliases from the shell.

The syntax is always the same - for example, we can see that this system has an alias causing 'foo' to be interpreted as 'bar':

> alias foo
foo='bar'
>

If we want to remove it, we simply use unalias:

> unalias foo
>

And now we can see that it's gone:

> alias foo
>

See also: alias

Personal tools