how to skip an alias in fish shell code example
Example: 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