How to remove an alias in bash?

Asked

Viewed 307 times

3

No bash, how to remove an alias?

For example, after doing alias man="man -a", I just want to execute man instead of man -a.

1 answer

5


To remove an alias:

unalias man

To ignore any alias with the command name, put \ before the command:

\man

Browser other questions tagged

You are not signed in. Login or sign up in order to post.