当前位置: 代码迷 >> 综合 >> Linux命令-查找(which、type、whereis、locate、find、grep)
  详细解决方案

Linux命令-查找(which、type、whereis、locate、find、grep)

热度:81   发布时间:2023-10-13 09:45:30.0

目录

which(查询 执行档 )

type(查询指令是否为bash shell的内建指令)

whereis(由一些特定目录查找文件文件名)

locate/updatedb(根据文件的部分名称模糊查询)

find(全盘搜索文件)

grep(查询文件中的文件内容)


which(查询 执行档 )

Linux命令-查找(which、type、whereis、locate、find、grep)

which指令根据环境变量“path”规范的路径查找“执行档”的name,which后面必须接完整的执行档名字

which -a列出所有的同名执行文档,默认近现实第一个。

type(查询指令是否为bash shell的内建指令)

Linux命令-查找(which、type、whereis、locate、find、grep)

Linux命令-查找(which、type、whereis、locate、find、grep)

whereis(由一些特定目录查找文件文件名)

Linux命令-查找(which、type、whereis、locate、find、grep)

whereis只查询某些铁定目录

locate/updatedb(根据文件的部分名称模糊查询)

Linux命令-查找(which、type、whereis、locate、find、grep)

locate的查询速度非常快,因为locate查询的数据是由(var/lib/mlocate)中已建立的数据库里面查询的,该数据库的建立每天只更新一次,当新建立的文件不再数据库中时,可以通过 updatedb 更新数据库(时间过慢)

find(全盘搜索文件)

Linux命令-查找(which、type、whereis、locate、find、grep)

正常使用命令的查询顺序是whereis,locate,find

grep(查询文件中的文件内容)

Linux命令-查找(which、type、whereis、locate、find、grep)

  相关解决方案