课堂练习
1.找出ifconfig 命令结果中本机的所有IPv4 地址
ifconfig|tr -cs '[0-9].' '\n'|sort -ut '.' -k3
2.查出分区空间使用率的最大百分比值
df|tr -s ' '|cut -d" " -f5|sort -n|tail -1
3.查出用户UID 最大值的用户名、UID 及shell 类型
getent passwd |sort -n -t: -k3|cut -d: -f1,3,7|tail -1
4.查出/tmp 的权限,以数字方式显示
如果无特殊权限位,将rwx—>421,权限位每三个求和
str=`ll -d /tmp|cut -d " " -f1|cut -c2-10|tr rwx- 4210`
echo $(echo ${str:0:1}+${str:1:1}+${str:2:1}|bc) $(echo ${str:3:1}+${str:4:1}+${str:5:1}|bc) $(echo ${str:6:1}+${str:7:1}+${str:8:1}|bc)|tr -d [:space:]
输出755
stat /tmp|sed -n 4p|cut -d: -f2|cut -d" " -f2|grep [[:digit:]]|cut -d/ -f1|cut- c3-6
stat /bin/cat |head -4|tail -1|tr " " "\n"|head -n2|tail -1|tr -cd '[:digit:]'
stat /tmp –c %a
5.统计当前连接本机的每个远程主机IP 的连接数,并按从大到小排序
netstat -nt|tr -s " "| cut -d" " -f5|grep "[0-9]"|cut -d: -f1|uniq -c|sort
6.显示/proc/meminfo 文件中以大小s 开头的行;( 要求:使用两种方式)
cat /proc/meminfo |grep -i ^s.* 或
cat /proc/meminfo |grep -e ^s.* -e ^S.* 或
grep '^[sS].*' /proc/meminfo
7.显示/etc/passwd 文件中不以/bin/bash 结尾的行
cat /etc/passwd|grep -v /bin/bash$
8.显示用户rpc 默认的shell 程序
getent passwd rpc|cut -d: -f7 或
grep '^rpc\>' /etc/passwd|cut -d: -f7
9.找出/etc/passwd 中的两位或三位数
cat /etc/passwd|grep -w '\b[1-9][0-9]\{1,2\}\b'
10.显示/etc/grub2.cfg 文件中,至少以一个空白字符开头的且后面存非空白字符的行
cat /etc/grub2.cfg |grep "^[[:space:]]\+.*[^[:space:]]"
11.找出"netstat -tan" 命令的结果中以'LISTEN' 后跟0 、1或多个空白字符结尾的行
netstat -tan|grep 'LISTEN[[:space:]]*$'
12.添加用户bash 、testbash 、basher 以及nologin( 其shell为 为/sbin/nologin),
而后找出/etc/passwd 文件中用户名同shell名
useradd bash; useradd testbash; useradd basher
useradd –s /sbin/nologin nologin
cat /etc/passwd|grep '^\<\(.*\)\>.*/\1$'
13.显示当前系统root 、mage 或wang 用户的UID 和默认shell
grep -E "^(root|wang|mage)\b" /etc/passwd|cut -d: -f3,7
14.找出/etc/rc.d/init.d/functions 文件中行首为某单词(包括下划线) 后面跟一个小括号的行
cat /etc/rc.d/init.d/functions |egrep "^[[:alnum:]_]+\(\)" —最后括号转义
15.使用egrep 取出/etc/rc.d/init.d/functions 中其基名
echo "/etc/rc.d/init.d/functions" |egrep -o "[^/]+/?$"
注意对比下面
16.使用egrep 取出上面路径的目录名
echo "/etc/rc.d/init.d/functions" |egrep -o "(/.*/)"
17.统计以root 身份登录的每个远程主机IP 地址的登录次数
last|grep -E -o "^root\>.*([[:digit:]]+\.)[[:digit:]]+"|tr -s " "|cut -d" " -f1,3|sort|uniq –c
18.利用扩展正则表达式分别表示0-9 、10-99 、100-199、200-249 、250-255
grep -E "[0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5]" file
19.显示ifconfig 命令结果中所有IPv4 地址
ifconfig|grep -E -o "(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])"
作业
1.取本机ip地址
ifconfig | egrep -o '([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])'
2.取各分区利用率的数值
3.统计/etc/init.d/functions 文件中每个单词出现的次数,并按频率从高到低显示
cat /etc/init.d/functions |tr -c '[:alpha:]' '\n'|sort|uniq –c
4./etc/rc.d/init.d/functions 取目录名
/etc/rc.d/init.d/functions/取目录名
5.正则表达式表示身份证号
cat identify |egrep -o "[[:digit:]]{18}|[[:digit:]]{17}X|[[:digit:]]{15}"
6.正则表达式表示手机号
cat phone |egrep -o "[1-9][0-9]{10}"
7.正则表达式表示邮箱
cat mail |egrep -o "[[:alnum:]_]+@[[:alnum:]]+.[[:alnum:]]+"
8.正则表达式表示QQ号
grep "[1-9][0-9]\{4,9\}$"
原创文章,作者:victorycommander,如若转载,请注明出处:http://www.178linux.com/30430