Linux命令解釋之grep

2021-10-10 17:36:15 字數 3392 閱讀 5503

[root@node1 ~]# grep --help

用法: grep [選項]… pattern [file]…

在每個 file 或是標準輸入中查詢 pattern。

預設的 pattern 是乙個基本正規表示式(縮寫為 bre)。

例如: grep -i 『hello world』 menu.h main.c

正規表示式選擇與解釋:

-e, --extended-regexp pattern 是乙個可擴充套件的正規表示式(縮寫為 ere)

-f, --fixed-strings pattern 是一組由斷行符分隔的定長字串。

-g, --basic-regexp pattern 是乙個基本正規表示式(縮寫為 bre)

-p, --perl-regexp pattern 是乙個 perl 正規表示式

-e, --regexp=pattern 用 pattern 來進行匹配操作

-f, --file=file 從 file 中取得 pattern

-i, --ignore-case 忽略大小寫

-w, --word-regexp 強制 pattern 僅完全匹配字詞

-x, --line-regexp 強制 pattern 僅完全匹配一行

-z, --null-data 乙個 0 位元組的資料行,但不是空行

miscellaneous:

-s, --no-messages suppress error messages

-v, --invert-match select non-matching lines

-v, --version display version information and exit

–help display this help text and exit

輸出控制:

-m, --max-count=num num 次匹配後停止

-b, --byte-offset 輸出的同時列印位元組偏移

-n, --line-number 輸出的同時列印行號

–line-buffered 每行輸出清空

-h, --with-filename 為每一匹配項列印檔案名

-h, --no-filename 輸出時不顯示檔名字首

–label=label 將label 作為標準輸入檔名字首

-o, --only-matching show only the part of a line matching pattern

-q, --quiet, --silent suppress all normal output

–binary-files=type assume that binary files are type;

type is 『binary』, 『text』, or 『without-match』

-a, --text equivalent to --binary-files=text

-i equivalent to --binary-files=without-match

-d, --directories=action how to handle directories;

action is 『read』, 『recurse』, or 『skip』

-d, --devices=action how to handle devices, fifos and sockets;

action is 『read』 or 『skip』

-r, --recursive like --directories=recurse

-r, --dereference-recursive

likewise, but follow all symlinks

–include=file_pattern

search only files that match file_pattern

–exclude=file_pattern

skip files and directories matching file_pattern

–exclude-from=file skip files matching any file pattern from file

–exclude-dir=pattern directories that match pattern will be skipped.

-l, --files-without-match print only names of files containing no match

-l, --files-with-matches print only names of files containing matches

-c, --count print only a count of matching lines per file

-t, --initial-tab make tabs line up (if needed)

-z, --null print 0 byte after file name

檔案控制:

-b, --before-context=num 列印以文字起始的num 行

-a, --after-context=num 列印以文字結尾的num 行

-c, --context=num 列印輸出文字num 行

-num same as --context=num

–group-separator=sep use sep as a group separator

–no-group-separator use empty string as a group separator

–color[=when],

–colour[=when] use markers to highlight the matching strings;

when is 『always』, 『never』, or 『auto』

-u, --binary do not strip cr characters at eol (msdos/windows)

-u, --unix-byte-offsets report offsets as if crs were not there

(msdos/windows)

『egrep』即『grep -e』。『fgrep』即『grep -f』。

直接使用『egrep』或是『fgrep』均已不可行了。

若file 為 -,將讀取標準輸入。不帶file,讀取當前目錄,除非命令列中指定了-r 選項。

如果少於兩個file 引數,就要預設使用-h 引數。

如果有任意行被匹配,那退出狀態為 0,否則為 1;

如果有錯誤產生,且未指定 -q 引數,那退出狀態為 2。

請將錯誤報告給: [email protected]

gnu grep 主頁:

gnu 軟體的通用幫助:

Linux命令之 grep命令》

1.作用 linux系統中grep命令是一種強大的文字搜尋工具,它能使用正規表示式搜尋文字,並把匹配的行列印出來 也可以通過管道重定向流輸出到檔案中 grep全稱是global regular expression print,表示全域性正規表示式列印,它的使用許可權是所有使用者。2.格式 grep...

linux命令之grep命令

grep 命令是乙個十分強大的文字搜尋命令,它全面的搜尋滿足正規表示式文字內容並且可 以把對應的行 以及行號列印出來 基本格式 grep 選項 模式 檔案或者目錄 模式 是什麼呢?模式就是要搜尋的文字內容的正規表示式,當然也可以時最簡單的最直接的 文字。輸出是什麼呢,一般的輸出的是滿足有所要搜尋內容...

Linux命令之grep命令

grep命令是文字搜尋命令,它可以正規表示式搜尋文字,也可從乙個檔案中的內容作為搜尋關鍵字。grep的工作方式是這樣的,它在乙個或多個檔案中搜尋字串模板。如果模板包括空格,則必須被引用,模板後的所有字串被看作檔名。搜尋的結果被送到標準輸出,不影響原檔案內容。語法 grep option patter...