Linux 查詢檔案中的特定字串

2021-09-29 13:13:53 字數 394 閱讀 9394

find 與 grep組合查詢

find . –name 『檔案型別』 | xargs grep –n 『查詢內容』

檔案型別可正規表示式通配, [.]表示當前目錄下進行查詢,也可自由指定目錄.比如:

find /etc –name 『*properties』 | xargs grep –n 『cachesize』

查詢/etc目錄下,包含cachesize欄位並以properties結尾的檔案

find . –name 『檔案型別』 –exec grep –n 『查詢內容』

find /etc –name 『*properties』 –exec grep –n 『cachesize』

grep –rln 『查詢內容』 . –include=』*properties』

linux中查詢檔案

第一步要做的是通過ssh連線到你的linux,在linux中查詢檔案有兩種方法。find命令使用 linux find命令可以用不同的搜尋標準如名字 型別 所屬人 大小等來搜尋目錄樹。基本語法如下 find name 檔名 find etc name passwd 查詢 etc目錄下的passwdf...

linux中模糊查詢檔案

linux中模糊查詢檔案 1 在當前目錄下搜尋指定檔案 find name test.txt 2 在當前目錄下模糊搜尋檔案 find name txt 3 在當前目錄下搜尋特定屬性的檔案 find amin 10 查詢在系統中最後10分鐘訪問的檔案 find atime 2 查詢在系統中最後48小時...

linux中查詢檔案命令

linux下檔案搜尋 查詢 檢視命令 1 最強大的搜尋命令 find 查詢各種檔案的命令 2 在檔案資料中查詢檔案 locate 3 搜尋命令所在的目錄及別名資訊 which 4 搜尋命令所在的目錄及幫助文件路徑 whereis5 在檔案中搜尋字串匹配的行並輸出 grep6 分頁顯示乙個檔案或任何輸...