grep [-acinv] '搜尋字串 ' filename
參數說明:
-a :將 binary 檔案以 text 檔案的方式搜尋資料
-c :計算找到 '搜尋字串 ' 的次數
-i :忽略大小寫的不同,所以大小寫視為相同
-n :順便輸出行號
-v :反向選擇,亦即顯示出沒有 '搜尋字串 ' 內容的那一行!
grep -n 'the ' 123.txt 搜索the字符 -----------搜尋特定字串
grep -n 't[ea]st ' 123.txt 搜索test或taste两个字符---------利用 [] 來搜尋集合字元
grep -n '[^g]oo ' 123.txt 搜索前面不为g的oo-----------向選擇 [^]
grep -n '[0-9] ' 123.txt 搜索有0-9的数字
grep -n '^the ' 123.txt 搜索以the为行首-----------行首搜索^
grep -n '^[^a-zA-Z] ' 123.txt 搜索不以英文字母开头
grep -n '[a-z]$ ' 123.txt 搜索以a-z结尾的行---------- 行尾搜索$
grep -n 'g..d ' 123.txt 搜索开头g结尾d字符----------任意一個字元 .
grep -n 'ooo* ' 123.txt 搜索至少有两个oo的字符---------重複字元 *
阅读(1562) | 评论(0) | 转发(0) |