• Linux下which、whereis、locate命令的区别


      我们经常在linux要查找某个文件,但不知道放在哪里了,可以使用下面的一些命令来搜索。 

    • which       查看可执行文件的位置 
    • whereis    查看文件的位置 
    • locate       配合数据库查看文件位置 

     一  which

    which是通过 PATH环境变量 到该路径内查找可执行文件,所以基本的功能是寻找可执行文件

    [root@VM_0_15_centos ~]# which   passwd 
    /usr/bin/passwd

     二 whereis

    参数说明:  
    -b : 只找二进制文件  
    -m: 只找在说明文件manual路径下的文件  
    -s : 只找source源文件  
    -u : 没有说明文档的文件  

    将和passwd相关的文件全部查找出来

    [root@VM_0_15_centos ~]# whereis   passwd
    passwd: /usr/bin/passwd /etc/passwd /usr/share/man/man1/passwd.1.gz

    只将二进制文件查找出来

    [root@VM_0_15_centos ~]# whereis  -b  passwd
    passwd: /usr/bin/passwd /etc/passwd

    和find相比,whereis查找的速度非常快,这是因为linux系统会将 系统内的所有文件都记录在一个数据库文件中,当使用whereis和下面即将介绍的locate时,会从数据库中查找数据,而不是像find命令那样,通 过遍历硬盘来查找,效率自然会很高。 
    但是该数据库文件并不是实时更新,默认情况下时一星期更新一次,因此,我们在用whereis和locate 查找文件时,有时会找到已经被删除的数据,或者刚刚建立文件,却无法查找到,原因就是因为数据库文件没有被更新

     三  locate

    语法:locate 文件或者目录名称  

    [root@VM_0_15_centos ~]# locate  passwd
    /etc/passwd
    /etc/passwd-
    /etc/pam.d/passwd
    /etc/security/opasswd
    /home/test/passwd
    /usr/bin/gpasswd
    /usr/bin/grub2-mkpasswd-pbkdf2
    /usr/bin/passwd
    /usr/include/rpcsvc/yppasswd.h
    /usr/include/rpcsvc/yppasswd.x
    /usr/lib/firewalld/services/kpasswd.xml
    /usr/lib/x86_64-redhat-linux6E/include/rpcsvc/yppasswd.h
    /usr/lib/x86_64-redhat-linux6E/include/rpcsvc/yppasswd.x
    /usr/lib64/security/pam_unix_passwd.so
    /usr/sbin/chpasswd
    /usr/sbin/lpasswd

     

  • 相关阅读:
    CFree 提示main must return int
    策略模式
    CFree 提示no newline at the end of file
    EEPROM的写入操作解析
    一些关于mic的知识
    一些关于电池的资料
    太阳能电池板日发电量简易计算方法
    ubuntu 下载编译android源代码
    SC44B0的内存地址解析
    RequireJS 2.0 学习笔记一
  • 原文地址:https://www.cnblogs.com/wzy23/p/11377821.html
Copyright © 2020-2023  润新知