“文件”命令位于哪个位置?

“文件”命令位于哪个位置?

当我们检查文件类型时,我们使用file命令来执行此操作。我猜那个file命令是二进制文件。所以我在 bin 文件夹中查找它,但没有找到。问题是,如果它是二进制文件,那么该二进制文件位于哪里?

答案1

您可以使用which命令来定位命令:

which file

请参阅man which以了解更多信息。

答案2

在大多数 shell 中,包括 bash,你可以使用命令type来查找命令的位置:

$ type file
file is /usr/bin/file

答案3

它位于 /usr/bin/file。

下面的命令将帮你定位。你可以用任意内容替换文件。

which file

检查 /usr/bin 中的特定内容将会发现它在那里......

cd /usr/bin; ls -l | grep "file" 

答案4

最好的方法是使用typeshell 内置命令作为@FlorianDiesch建议。该which命令也可以做到这一点,但是,其他各种问题,它不能很好地处理别名或 shell 函数。

shell 内建命令type(可在bashshdashfishzsh以及ksh可能在其他命令中使用)不存在这些问题:

$ type file
file is /usr/bin/file

$ type ls
ls is aliased to `ls --color=tty'

$ type fix_config
fix_config is a function
fix_config () 
{ 
    old="ha";
    new="ba";
    sed -i.bak "17 s/$old/$new/" .config;
    cat .config;
    cp .config.bak .config
}

比较以上内容

$ which file
/usr/bin/file

$ which ls
/bin/ls

$ which fix_config
$

相关内容