[grep] grep -R -l 遞迴過濾資料夾中檔案內容
[root@mysql test]# grep -R linux /root/test/ #過濾文字檔案中的內容
/root/test/install.log.2: 131 COPPERing libselinux-2.0.94-5.8.el6.i686
/root/test/install.log.2: 303 COPPERing libselinux-utils-2.0.94-5.8.el6.i686
........................................
/root/test/install.log.syslog: 831 COPPERing selinux-policy-3.7.19-260.el6.noarch
/root/test/install.log.syslog: 1084 COPPERing selinux-policy-targeted-3.7.19-260.el6.noarch
[root@mysql test]#
[root@mysql test]#
[root@mysql test]# grep -R -l linux /root/test/ #過濾文字檔案中的內容,只顯示檔名
/root/test/install.log.2
/root/test/install.log
/root/test/install.log.3
/root/test/install.log.syslog
[root@mysql test]# grep -R -l -v linux /root/test/ # 沒有包含linux的檔案.
/root/test/passwd
/root/test/install.log.zip
/root/test/install.log.2
/root/test/install.log
/root/test/install.log.3
/root/test/install.log.syslog
/root/test/install.log.2: 131 COPPERing libselinux-2.0.94-5.8.el6.i686
/root/test/install.log.2: 303 COPPERing libselinux-utils-2.0.94-5.8.el6.i686
........................................
/root/test/install.log.syslog: 831 COPPERing selinux-policy-3.7.19-260.el6.noarch
/root/test/install.log.syslog: 1084 COPPERing selinux-policy-targeted-3.7.19-260.el6.noarch
[root@mysql test]#
[root@mysql test]#
[root@mysql test]# grep -R -l linux /root/test/ #過濾文字檔案中的內容,只顯示檔名
/root/test/install.log.2
/root/test/install.log
/root/test/install.log.3
/root/test/install.log.syslog
[root@mysql test]# grep -R -l -v linux /root/test/ # 沒有包含linux的檔案.
/root/test/passwd
/root/test/install.log.zip
/root/test/install.log.2
/root/test/install.log
/root/test/install.log.3
/root/test/install.log.syslog
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24237320/viewspace-2130023/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Linux 檔案、內容查詢(遞迴) ,grep ,findLinux遞迴
- Java遞迴遍歷資料夾及檔案過濾器使用(FileFilter)Java遞迴過濾器Filter
- grep、sed批量替換檔案內容shell
- 如何用 grep 命令在 UNIX 中根據檔案內容查詢檔案
- grep遞迴查詢子目錄遞迴
- 在Linux中,如何使用grep命令查詢檔案中的內容?Linux
- linux下使用find xargs grep查詢檔案及檔案內容Linux
- cat、tail、head、tee、grep、wc、sort檔案操作和過濾AI
- grep檔案比對
- Linux常用指令---grep(搜尋過濾)Linux
- linux科研武器庫 - 檔案數量統計 - ls -l | grep "^-" | wc -lLinux
- linux下的find檔案查詢命令與grep檔案內容查詢命令Linux
- Android遞迴刪除資料夾下所有檔案Android遞迴
- python中按照資料夾中檔案的排列順序讀取檔案內容Python
- grep: PCRE does not support L, l, N{name}, U, or u
- nodejs遞迴資料夾獲取所有檔案路徑NodeJS遞迴
- 在指定的檔案過濾想要的內容
- asp.net 遞迴刪除資料夾及其子資料夾和所有檔案[轉]ASP.NET遞迴
- 遞迴遍歷磁碟下的某一資料夾中所有檔案,並copy檔案生成檔案和帶資料夾的檔案遞迴
- grep 命令系列:grep 中的正規表示式
- Java 資料夾遞迴遍歷Java遞迴
- PHP遞迴遍歷資料夾PHP遞迴
- grep -r “字串” 目錄名的使用字串
- Python批量修改資料夾內所有json檔案中部分內容PythonJSON
- 遞迴修改資料夾下面所有檔案裡面的的abc為abcde遞迴
- 刪除指定資料夾的檔案內容的sh指令碼指令碼
- Python求取資料夾內的檔案數量、子資料夾內的檔案數量Python
- bootstrap3.x內less資料夾的檔案內容及功能分析boot
- grep -vFf 比較2個檔案差異
- 恢復誤刪檔案ext3grep
- Liunx運維(三)-檔案過濾及內容編輯處理運維
- grep命令
- Java遍歷資料夾的兩種方法(非遞迴和遞迴)Java遞迴
- Linux作業系統之命令解釋:ls -l|grep ^-|wc -lLinux作業系統
- WINDOWS資料夾內容簡介Windows
- linux中grep基本用法Linux
- shell 中 grep、sed、awk 命令
- shell中grep命令詳解