Linux中用 grep 命令從檔案中搜尋並顯示檔名

linux.cn發表於2016-01-30

我怎樣從幾個檔案中搜尋(grep),並只顯示匹配到的檔案的檔名?

grep 命令系列:從檔案中搜尋並顯示檔名

當你從不止一個的檔案中搜尋時,預設它將顯示檔名:

grep "word" 檔名
grep root /etc/*

示例輸出:

/etc/bash.bashrc:       See "man sudo_root" for details.
/etc/crontab:17 *       * * *   root    cd / && run-parts --report /etc/cron.hourly
/etc/crontab:25 6       * * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
/etc/crontab:47 6       * * 7   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
/etc/crontab:52 6       1 * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
/etc/group:root:x:0:
grep: /etc/gshadow: Permission denied
/etc/logrotate.conf:    create 0664 root utmp
/etc/logrotate.conf:    create 0660 root utmp

每行開始的第一個部分是檔名(如:/etc/crontab、/etc/group)。使用 -l 選項可以只顯示檔名:

grep -l "string" filename
grep -l root /etc/*

示例輸出:

/etc/aliases
/etc/arpwatch.conf
grep: /etc/at.deny: Permission denied
/etc/bash.bashrc
/etc/bash_completion
/etc/ca-certificates.conf
/etc/crontab
/etc/group

你也可以逆轉輸出;使用 -L 選項來輸出那些不匹配的檔案的檔名

grep -L "word" filename
grep -L root /etc/*

示例輸出:

/etc/apm
/etc/apparmor
/etc/apparmor.d
/etc/apport
/etc/apt
/etc/avahi
/etc/bash_completion.d
/etc/bindresvport.blacklist
/etc/blkid.conf
/etc/bluetooth
/etc/bogofilter.cf
/etc/bonobo-activation
/etc/brlapi.key

相關文章