说明:蓝色=命令名称
浅绿=命令参数
浅蓝=选项
紫色=目录
系统环境:CentOS 6.2 i686
内容如下:
650) this.width=650;” border=0>
注: 此内容为ifconfig,ip不宜外泄,故输出于test文件修改为普通ip
要求:输出内容为 virbr0 192.168.122.1
sed方法:sed -n ‘/^[^ ]/{N;s/\(^[^ ]*\).*addr:\([0-9.]\+\).*/\1 \2/p}’ test
650) this.width=650;” border=0>
awk方法: awk ‘/^[^ ]/{a=$1;getline;b=substr($2,6);if(b~/^[0-9]/) print a,b}’ test650) this.width=650;” border=0>