grep [options] pattern [FILE]grep:命令本身[options]:命令修饰符pattern:要找到的搜索查询[FILE]:命令将要搜索的文件 示例:grep -i abc output.txt 如果FILE是-,则从标准输入中读取数据(不递归),如果没有提供FILE,则在当前目录递归搜索。三、常用选项 通用程序信息 --help:输出帮助信息-V, --version...
-F, --fixed-strings PATTERN is a set of newline-separated strings -G, --basic-regexp PATTERN is a basic regular expression (BRE) -P, --perl-regexp PATTERN is a Perl regular expression -e, --regexp=PATTERN use PATTERN for matching -f, --file=FILE obtain PATTERN from FILE -i, -...
-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...
grep:命令本身 [options]:命令修饰符 pattern:要找到的搜索查询 [FILE]:命令将要搜索的文件 示例:grep -i abc output.txt 如果FILE是-,则从标准输入中读取数据(不递归),如果没有提供FILE,则在当前目录递归搜索。 三、常用选项 通用程序信息 --help:输出帮助信息 -V, --version:输出版本信息 模式语法 -E, -...
-P, --perl-regexp PATTERN is a Perl regular expression -e, --regexp=PATTERN use PATTERN for matching -f, --file=FILE obtain PATTERN from FILE -i, --ignore-case ignore case distinctions -w, --word-regexp force PATTERN to match only whole words ...
在每个 FILE 或是标准输入中查找 PATTERN。 默认的 PATTERN 是一个基本正则表达式(缩写为 BRE)。 例如:grep -i 'hello world' menu.h main.c 正则表达式选择与解释: -E, --extended-regexp PATTERN 是一个可扩展的正则表达式(缩写为 ERE) -F, --fixed-strings PATTERN 是一组由断行符分隔的字符串。
If this option is used multiple times or is combined with the -f (--file) option, search for all patterns given. This option can be used to protect a pattern beginning with “-”. -f FILE, --file=FILE Obtain patterns from FILE, one per line. If this option is used multiple ...
-e, --regexp=PATTERN use PATTERN for matching -f, --file=FILE obtain PATTERN from FILE -i, --ignore-case ignore case distinctions -w, --word-regexp force PATTERN to match only whole words -x, --line-regexp force PATTERN to match only whole lines ...
(BRE)-P,--perl-regexpPATTERNis a Perl regular expression-e,--regexp=PATTERNusePATTERNformatching-f,--file=FILEobtainPATTERNfromFILE-i,--ignore-caseignorecasedistinctions-w,--word-regexp forcePATTERNto match only whole words-x,--line-regexp forcePATTERNto match only whole lines-z,--null-...
-e,--regexp=PATTERN use PATTERNformatching -f,--file=FILE obtain PATTERN from FILE -i, --ignore-case ignorecasedistinctions -w, --word-regexp force PATTERN to match only whole words -x, --line-regexp force PATTERN to match only whole lines ...