标签:editor roo 路径 mnt 字符 长度 sort 默认 打印
1 grep:文本过滤(模式:pattern)工具; *(grep, egrep, fgrep) 2 sed:stream editor,文本编辑工具; 3 awk:Linux上的实现gawk,文本报告生成器;
grep: Global search REgular expression and Print out the line.
1 选项: 2 --color=auto: 对匹配到的文本着色显示; 3 -v: 显示不能够被pattern匹配到的行; 4 -i: 忽略字符大小写; 5 -o: 仅显示匹配到的字符串; 6 -q: 静默模式,不输出任何信息; 7 -A #:after, 后#行 8 -B #: before, 前#行 9 -C #:context, 前后各#行 10 11 -E:使用ERE;
基本正则表达式元字符:
字符匹配:
1 # grep ‘^{s|S}‘ /proc/meminfo 2 # grep -i ‘^s‘ /proc/meminfo
2、显示/etc/passwd文件中不以/bin/bash结尾的行;
1 # grep -v ‘/bin/bash$‘ /etc/passwd
3、显示/etc/passwd文件中ID号最大的用户的用户名;
1 # sort -t: -k3 -n /etc/passwd | tail -1 | cut -d: -f1
4、如果用户root存在,显示其默认的shell程序;
1 # id root &> /dev/null && grep "^root\>" /etc/passwd | cut -d: -f7
5、找出/etc/passwd中的两位或三位数;
1 # grep "\<[0-9]\{2,3\}\>" /etc/passwd
6、显示/etc/rc.d/rc.sysinit文件中,至少以一个空白字符开头的且后面存非空白字符的行;
1 # grep "^[[:space:]]\+[^[:space:]]" /etc/rc.d/rc.sysinit
7、找出"netstat -tan"命令的结果中以‘LISTEN‘后跟0、1或多个空白字符结尾的行;
# netstat -tan | grep "LISTEN[[:space:]]*$"
8、添加用户bash、testbash、basher以及nologin(其shell为/sbin/nologin);而后找出/etc/passwd文件中用户名同shell名的行;
1 # grep "^\([[:alnum:]]\+\>\).*\1$" /etc/passwd
egrep及扩展的正则表达式
egrep = grep -E
1 # grep -E ‘^(root|centos|user1)\>‘ /etc/passwd | cut -d: -f1,3,7
2、找出/etc/rc.d/init.d/functions文件(centos6)中某单词后面跟一个小括号的行;
# grep -E -o "^[_[:alpha:]]+\(\)" /etc/rc.d/init.d/functions
3、使用echo输出一绝对路径,使用egrep取出其基名;
1 # echo "/mnt/sdc" | grep -E -o "[^/]+/?$" | cut -d"/" -f1
标签:editor roo 路径 mnt 字符 长度 sort 默认 打印
原文地址:http://www.cnblogs.com/maxtgood/p/6155964.html