免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 31607 | 回复: 8
打印 上一主题 下一主题

grep用法小结(作者总结) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-01-21 14:53 |只看该作者 |倒序浏览
grep用法:
1、grep -l 'boss' *   显示所有包含boss的文件名。
2、grep -n 'boss' file在匹配行之前加行号。
3、grep -i 'boss' file显示匹配行,boss不区分大小写。
4、grep -v 'boss' file显示所有不匹配行。
5、grep -q 'boss' file找到匹配行,但不显示,但可以检查grep的退出状态。(0为匹配成功)
6、grep -c 'boss' file只显示匹配行数(包括0)。
7、grep   "$boss" file扩展变量boss的值再执行命令。
8、ps -ef|grep "^*user1" 搜索user1的命令,即使它前面有零个或多个空格。
9、ps -e|grep -E 'grant_server|commsvr|tcpsvr|dainfo' 查找多个字符串的匹配(grep -E相当于egrep)

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
2 [报告]
发表于 2006-01-21 17:09 |只看该作者

Grep help

grep还有很多开关, 例如-o就是我最喜欢的
/home/lee#grep --help
Usage: grep [OPTION]... PATTERN [FILE] ...
Search for PATTERN in each FILE or standard input.
Example: grep -i 'hello world' menu.h main.c

Regexp selection and interpretation:
  -E, --extended-regexp     PATTERN is an extended regular expression
  -F, --fixed-strings       PATTERN is a set of newline-separated strings
  -G, --basic-regexp        PATTERN is a basic regular expression
  -P, --perl-regexp         PATTERN is a Perl regular expression
  -e, --regexp=PATTERN      use PATTERN as a regular expression
  -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
  -z, --null-data           a data line ends in 0 byte, not newline

Miscellaneous:
  -s, --no-messages         suppress error messages
  -v, --invert-match        select non-matching lines
  -V, --version             print version information and exit
      --help                display this help and exit
      --mmap                use memory-mapped input if possible

Output control:
  -m, --max-count=NUM       stop after NUM matches
  -b, --byte-offset         print the byte offset with output lines
  -n, --line-number         print line number with output lines
      --line-buffered       flush output on every line
  -H, --with-filename       print the filename for each match
  -h, --no-filename         suppress the prefixing filename on output
      --label=LABEL         print LABEL as filename for standard input
  -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, -r, --recursive       equivalent to --directories=recurse
      --include=PATTERN     files that match PATTERN will be examined
      --exclude=PATTERN     files that match PATTERN will be skipped.
      --exclude-from=FILE   files that match PATTERN in FILE will be skipped.
  -L, --files-without-match only print FILE names containing no match
  -l, --files-with-matches  only print FILE names containing matches
  -c, --count               only print a count of matching lines per FILE
  -Z, --null                print 0 byte after FILE name

Context control:
  -B, --before-context=NUM  print NUM lines of leading context #
  -A, --after-context=NUM   print NUM lines of trailing context    #
  -C, --context=NUM         print NUM lines of output context
  -NUM                      same as --context=NUM
      --color[=WHEN],
      --colour[=WHEN]       use markers to distinguish the matching string
                            WHEN may be `always', `never' or `auto'.
  -U, --binary              do not strip CR characters at EOL (MSDOS)
  -u, --unix-byte-offsets   report offsets as if CRs were not there (MSDOS)

`egrep' means `grep -E'.  `fgrep' means `grep -F'.
With no FILE, or when FILE is -, read standard input.  If less than
two FILEs given, assume -h.  Exit status is 0 if match, 1 if no match,
and 2 if trouble.

Report bugs to <bug-gnu-utils@gnu.org>.
/home/lee#

论坛徽章:
0
3 [报告]
发表于 2006-01-21 17:57 |只看该作者
汗!继续学习,谢谢楼上!

论坛徽章:
0
4 [报告]
发表于 2006-01-22 09:45 |只看该作者
请问如何显示一个文件的内容,要求不包含最后5行.
我只想到最简单的一个办法
sed '$d' system|sed '$d'|sed '$d'|sed '$d'|sed '$d'
效率不高.

[ 本帖最后由 ha_ 于 2006-1-22 09:54 编辑 ]

论坛徽章:
0
5 [报告]
发表于 2006-01-22 10:23 |只看该作者
#b=$((`cat file |wc -l` - 5))
#sed -n '1,'$b'p' file

论坛徽章:
0
6 [报告]
发表于 2006-01-22 10:45 |只看该作者
也是个笨办法!先判断行数再说:
Line=`wc -l system|awk '{print $1}`
Li=`expr $Line - 4`
eval sed '$Li,\$d' system

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
7 [报告]
发表于 2006-01-22 11:08 |只看该作者
tac file|sed 1,5d|tac

论坛徽章:
0
8 [报告]
发表于 2006-01-22 12:12 |只看该作者
谢谢!
实现的方式真的有1000种,我只要最优的那种.

论坛徽章:
8
摩羯座
日期:2014-11-26 18:59:452015亚冠之浦和红钻
日期:2015-06-23 19:10:532015亚冠之西悉尼流浪者
日期:2015-08-21 08:40:5815-16赛季CBA联赛之山东
日期:2016-01-31 18:25:0515-16赛季CBA联赛之四川
日期:2016-02-16 16:08:30程序设计版块每日发帖之星
日期:2016-06-29 06:20:002017金鸡报晓
日期:2017-01-10 15:19:5615-16赛季CBA联赛之佛山
日期:2017-02-27 20:41:19
9 [报告]
发表于 2006-01-23 09:30 |只看该作者
  1. ed file <<\EOF
  2. -4,$d
  3. wq
  4. EOF
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP