linux中grep基本用法

俄又不亂來發表於2018-08-13

grep 查詢並且提取檔案內容
常用的匹配模式
hello 包含字元hello
^hello 以字串hello開頭
hello$ 以字串hello結尾

語法格式
grep “條件” 檔名稱

例:
1.在/hello/a.txt檔案中找出包含 hello 的行

grep “hello” /hello/a.txt

hello
11 hello2

2.在/hello/a.txt檔案中找出以 hello開頭的行

grep “^hello” /hello/a.txt

hello

3.在/hello/a.txt檔案中找出以hello結尾的行

# grep “hello$” /hello/a.txt
hello

4.在/hello/a.txt檔案中找出以hello開頭的行,並且寫入到b.txt檔案中

grep “^hello” /hello/a.txt > b.txt

[root@hello hello]# cat b.txt
hello


相關文章