TypechoJoeTheme

MetMan's Blog

网站页面

Linux实用命令whereis

MetMan博 主神仙
2025-03-22
/
0 评论
/
13 阅读
/
245 个字
/
百度已收录
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.

linuxshell
朗读
赞(0)
赞赏
感谢您的支持,我会继续努力哒!
版权属于:

MetMan's Blog

本文链接:

https://blog.metman.top/index.php/archives/180/(转载时请注明本文出处及文章链接)

评论 (0)

互动读者

标签云

最新回复

  1. tqymnonccc打酱油
    2024-09-27
  2. toibdpojay打酱油
    2024-09-22
  3. yvctxyevvw打酱油
    2024-09-22
  4. frezhwzwuq打酱油
    2024-09-22
登录
X
用户名
密码