flow2k Asked: 2018-02-25 01:04:56 +0800 CST2018-02-25 01:04:56 +0800 CST 2018-02-25 01:04:56 +0800 CST 在自别名的命令上调用 `type` 772 有时一个命令是它自己的别名。例如: $ type ls ls is aliased to `ls -al' 如何调用type命令ls本身(而不是别名)? alias command 1 个回答 Voted Best Answer nohillside 2018-02-25T01:15:29+08:002018-02-25T01:15:29+08:00 根据typein的描述man bash: -P 选项强制对每个名称进行 PATH 搜索,即使type -t name不会返回文件。如果命令被散列,-p 和 -P 打印散列值,不一定是 PATH 中最先出现的文件 所以 $ type ls ls is aliased to `ls -FG' $ type -P ls /bin/ls 还 $ type -a ls ls is aliased to `ls -FG' ls is /bin/ls 有时可能会有所帮助。
根据
type
in的描述man bash
:所以
还
有时可能会有所帮助。