Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> 文件內容查找 find+grep

文件內容查找 find+grep

日期:2017/2/7 14:40:41      編輯:Linux教程
 

看到chinaunix上一哥們用於查找文件內容的命令:

-----------------------------------------------------------

#> find . -type f -exec grep 'mingtian' -l {} \;
grep -l :是顯示匹配的內容的文件名字!
或者:
#> find . -type f -name "*.*" |xargs grep 'xiaoshou' -l
(這個方法 不好,挺亂的,還慢,推薦前一個方法!)
-----------------------------------------------------------

想到自己常用的方法也不錯,特記錄下來:

#grep "printf" $(find . -name *.c)
 

Copyright © Windows教程網 All Rights Reserved