1.显示/etc/passwd中不以/bin/bash结尾的行
grep -v “bin/bash$” /etc/passwd
2.找出/etc/passwd中的两位数或者三位数
grep “<[0-9]{2,3}>” /etc/passwd
3.找出/etc/init.d/functions中至少一个空白符开头,后面是非空白字符行
grep -E “1” /etc/init.d/functions
4.找出ifconfig eth0中的ip地址
法一:ifconfig ens33 | grep ‘inet’ | awk ‘{print $2}’ | head -1
法二:ifconfig ens33 |grep -Eo "(<[0-9]{1,3}>.){3}<[0-9]{1,3}> " | head -1
法三:ifconfig ens33 |grep ‘inet’ |head -1 |cut -c 14-28
[:space:] ↩︎