Answers for "how to bypass an alias in fish shell"

0

how to bypass an alias in fish shell

#Fish internally has no aliases.
#The alias thing you are executing is itself a function that simply 
#defines functions (see type alias).

#So if you want to skip an alias, use 
$ command thething 
or 
$ builtin thething.
# so for example if I want to skip my ls alias
$ command ls
# and you can always use a command like this to
$ /bin/ls
Posted by: Guest on March-02-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language