标签:grep 用法 实例
一、作业(练习)内容:
1、总结本此课程中所涉及命令的使用方法及相关示例展示;
2、总结基本正则表达式及扩展正则表达式
3、显示/etc/passwd文件中以bash结尾的行
grep "bash\>" /etc/passwd
4、显示/etc/passwd文件中的两位数或三位数
grep --color=auto "\<[0-9]\{2,3\}\>" /etc/passwd
5、显示`netstat -tan`命令结果中以‘LISTEN’后跟0个、1个或者多个空白字符结尾的行
netstat -tan | grep --color=auto "LISTEN[[:space:]]*$"
6、添加用户bash、testbash、basher以及nologin用户(nologin用户的shell为/sbin/nologin);而后找出/etc/passwd文件中用户名与其shell名相同的行
grep "^\([[:alnum:]]\{1,\}\)\>.*\<\1$" /etc/passwd
7、显示当前系统上root、centos或者user1用户的默认shell和UID (请事先创建这些用户,若不存在)
grep -E "^(centos|user1|root)\>" /etc/passwd | cut -d: -f3,6
8、找出/etc/rc.d/init.d/functions文件中某单词(单词中间可以存在下划线)后面跟着一组小括号的行
grep "\<[[:alpha:]]*[_]*[[:alpha:]]*\>()" /etc/rc.d/init.d/functions
9、使用echo输出一个路径,而后egrep找出其路径基名;进一步的使用egrep取出其目录名
echo /etc/rc.d/init.d/functions | egrep -o "[^/]*$"
echo /etc/rc.d/init.d/functions | egrep -o "[^/]*/[^/]*$" | egrep -o "^[^/]*"
10、找出ifconfig命令执行结果中1-255之间的数字
ifconfig | egrep --color=auto "\<([1-9]|[1-9][0-9]|[1-9][0-9]{2}|2[0-4][0-9]|25[0-5])\>"
标签:grep 用法 实例
原文地址:http://hubla.blog.51cto.com/1093504/1689998