linux中grep基本用法

2021-08-25 06:02:05 字數 542 閱讀 7322

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結尾的行

hello

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

grep 「^hello」 /hello/a.txt > b.txt

[root@hello hello]# cat b.txt

hello

linux中grep的用法

過濾多個關鍵字 grep e root mysql etc passwd root 0 0 root root bin bash operator 11 0 operator root sbin nologin mysql 500 500 home mysql sbin nologin 排除多個關鍵...

linux中grep的用法

grep 引數 匹配項 檔案a 檔案b grep i the text.txt 忽略the的大小寫在檔案中進行匹配 grep v the text.txt 在檔案中匹配不含the行 grep n the text.txt 在檔案中匹配the並且顯示行號 grep c the text.txt 統計匹...

Linux中grep命令的用法

1.作用 linux 系統中grep 命令是一種強大的文字搜尋工具,它能使用正規表示式搜尋文字,並把匹配的行列印出來。grep 全稱是global regular expression print 表示全域性正規表示式版本,它的使用許可權是所有使用者。2.格式 grep options 3.主要引數...