If you have defined aliases in your .bashrc, some of them likely to have the same name as one of the programs on your system, ls is a common example. If you want to ignore an alias and run a program, prefix program name with ‘command’ keyword:

command <program> <args>

For example, to run ls program (with any arguments) and ignore an alias, run:

command ls -a

Leave a Reply