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
.
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
.
5
To remove an alias:
unalias man
To ignore any alias with the command name, put \
before the command:
\man
Browser other questions tagged bash shell
You are not signed in. Login or sign up in order to post.