Linux实用命令whereis
03/22
本文最后更新于
2025年03月22日,已超过
13天没有更新。如果文章内容或图片资源失效,请留言反馈,我会及时处理,谢谢!
Linux系统有一个非常实用的查找命令工具:whereis
。
whereis用于快速查找标准目录中可执行文件、手册(manual)、源代码。
比如查找ls命令:
$ whereis ls
ls: /usr/bin/ls /usr/share/man/man1p/ls.1p.gz /usr/share/man/man1/ls.1.gz
前面提到的标准目录指的是:命令使用$PATH
和$MANPATH
环境变量内容作为默认搜索目录。可以使用-l
选项列出会搜索的目录。
常用选项
whereis vs locate vs find
whereis查找标准目录,locate需要创建文件目录数据库,而find根据指定条件(比如文件名、文件大小、修改时间等)实时搜索文件系统。
用途
可用于shell脚本中查询命令是否存在。
command='ls'
command_path=$(whereis -b $command)
if [[ $command_path != "$command:" ]] #如果找不到命令,只会显式'命令:'
then
echo "$command exists at $command_path"
else
echo "$command not found"
fi
# Output:
# ls exists at ls: /bin/ls
实例
绘图工具ncl(6.5.0)在CentOS 8系统中执行出现问题
$ ncl: error while loading shared libraries: libgfortran.so.3: cannot open shared object file: No such file or directory
提示找不到libgfortran.so.3
动态库文件,可以用whereis查找看看。
$ whereis libgfortran.so.3
libgfortran.so: /usr/lib64/libgfortran.so.5
发现系统中存在libgfortran.so
版本比需要的版本高,因此执行出现了问题。解决方法就是安装对应版本的动态库。
参考资料
https://ioflood.com/blog/whereis-linux-command/#:~:text=The%20%27whereis%27%20command%20in%20Linux%20is%20a%20utility%20for%20locating,stored%20within%20your%20Linux%20system.

