📜  如何绕过鱼壳中的别名 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:30.400000             🧑  作者: Mango

代码示例1
#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