7 ms·
fwiw you can usually bypass aliases ad-hoc. In Bash I believe instead of `ls` you can `\ls` to get the unaliased version.
by tarxvf 1y ago
fwiw you can usually bypass aliases ad-hoc.
In Bash I believe instead of `ls` you can `\ls` to get the unaliased version.
- pests 1y agoYou can also use the full path to the program, enclose it in quotes, or call "unalias ls" to disassociate it for that shell.