locate命令詳解

 

基礎命令學習目錄首頁html

 

原文連接:https://www.cnblogs.com/xqzt/p/5426666.htmlnode

一、命令簡介

        locate(locate) 命令用來查找文件或目錄。 locate命令要比find -name快得多,緣由在於它不搜索具體目錄,而是搜索一個數據庫/var/lib/mlocate/mlocate.db 。這個數據庫中含有本地全部文件信息。Linux系統自動建立這個數據庫,而且天天自動更新一次,所以,咱們在用whereis和locate 查找文件時,有時會找到已經被刪除的數據,或者剛剛創建文件,卻沒法查找到,緣由就是由於數據庫文件沒有被更新。爲了不這種狀況,能夠在使用locate以前,先使用updatedb命令,手動更新數據庫。整個locate工做實際上是由四部分組成的:linux

  1. /usr/bin/updatedb   主要用來更新數據庫,經過crontab自動完成的git

  2. /usr/bin/locate         查詢文件位置正則表達式

  3. /etc/updatedb.conf   updatedb的配置文件數據庫

  4. /var/lib/mlocate/mlocate.db  存放文件信息的文件svn

二、用法

locate [OPTION]... [PATTERN]...

三、選項

複製代碼
  -b, --basename         match only the base name of path names
  -c, --count            只輸出找到的數量
  -d, --database DBPATH  使用DBPATH指定的數據庫,而不是默認數據庫 /var/lib/mlocate/mlocate.db
  -e, --existing         only print entries for currently existing files
  -L, --follow           follow trailing symbolic links when checking file existence (default)
  -h, --help             顯示幫助
  -i, --ignore-case      忽略大小寫
  -l, --limit, -n LIMIT  limit output (or counting) to LIMIT entries
  -m, --mmap             ignored, for backward compatibility
  -P, --nofollow, -H     don't follow trailing symbolic links when checking file existence
  -0, --null             separate entries with NUL on output
  -S, --statistics       don't search for entries, print statistics about eachused database
  -q, --quiet            安靜模式,不會顯示任何錯誤訊息
  -r, --regexp REGEXP    使用基本正則表達式
      --regex            使用擴展正則表達式
  -s, --stdio            ignored, for backward compatibility
  -V, --version          顯示版本信息
  -w, --wholename        match whole path name (default)
複製代碼

四、示例

示例1: 搜索etc目錄下全部以my開頭的文件
[root@cent6 lib]# locate /etc/my
/etc/my.cnf
示例2:新增的文件沒法locate,使用updatedb
[root@cent6 ~]# touch new.txt
[root@cent6 ~]# locate new.txt
[root@cent6 ~]# updatedb
[root@cent6 ~]# locate new.txt
/root/new.txt
示例3:updatedb的配置文件/etc/updatedb.conf
複製代碼
[root@cent6 ~]# cat /etc/updatedb.conf 
PRUNE_BIND_MOUNTS = "yes"
PRUNEFS = "9p afs anon_inodefs auto autofs bdev binfmt_misc cgroup cifs coda configfs cpuset debugfs devpts ecryptfs exofs fuse fusectl gfs gfs2 hugetlbfs inotifyfs iso9660 jffs2 lustre mqueue ncpfs nfs nfs4 nfsd pipefs proc ramfs rootfs rpc_pipefs securityfs selinuxfs sfs sockfs sysfs tmpfs ubifs udf usbfs"
PRUNENAMES = ".git .hg .svn"
PRUNEPATHS = "/afs /media /net /sfs /tmp /udev /var/cache/ccache /var/spool/cups /var/spool/squid /var/tmp"
複製代碼

第一行PRUNE_BIND_MOUNTS="yes"的意思是:是否進行限制搜索。post

第二行是排除檢索的文件系統類型,即列出的文件系統類型不進行檢索。學習

第二行表示對哪些後綴的文件排除檢索,也就是列在這裏面的後綴的文件跳過不進行檢索。不一樣後綴之間用空格隔開。ui

第四行是排除檢索的路徑,即列出的路徑下的文件和子文件夾均跳過不進行檢索。updatedb以後使用locate仍然找不到想要文件

能夠檢查掛載的目錄是否被忽略了

相關文章
相關標籤/搜索