在Linux中,type命令用于显示给定命令的类型和来源
type
type command_name
例如,要查看ls命令的类型,你可以输入:
ls
type ls
这将显示类似以下的输出:
ls is /bin/ls
这表示ls命令位于/bin/ls。
/bin/ls
请注意,type命令不会显示别名。如果你想查看一个命令的完整路径,包括可能的别名,你可以使用which或command命令。例如:
which
command
which ls
或
command ls