How to remove an alias in bash?

3

In bash, how to remove an alias?

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

    
asked by anonymous 09.06.2015 / 15:05

1 answer

5

To remove an alias:

unalias man

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

\man
    
09.06.2015 / 15:05