Linux – avoid running an alias command
Posted by danielSep 24
Linux – how to avoid running an alias command in shell
In some cases, you might have multiple binaries, scripts or aliases with the same name in your system. Under certain circumstances you want to run only a built-in shell command, but no an alias of the command. Here are some ways to do it.
The “ls” command is usually aliased to color the output, for instance –
$ type ls
ls is aliased to `ls --color=auto'
Precede the command with “command” or “\”
$ command ls /tmp/tutorial/
chapter-one readme
$ \ls /tmp/tutorial/
chapter-one readme
References –
https://www.tldp.org/LDP/abs/html/aliases.html
https://www.gnu.org/software/bash/manual/html_node/Bash-Builtins.html
13 comments
You must be logged in to post a comment.