系统环境:CentOS 6.2 i686
注:为ifconfig,ip不宜外泄,故输出于test文件修改为普通ip
要求:输出内容为 virbr0 192.168.122.1
sed方法:sed -n '/^[^ ]/{N;s/\(^[^ ]*\).*addr:\([0-9.]\+\).*/\1 \2/p}' test
awk方法: awk '/^[^ ]/{a=$1;getline;b=substr($2,6);if(b~/^[0-9]/) print a,b}' test
系统环境:CentOS 6.2 i686
注:为ifconfig,ip不宜外泄,故输出于test文件修改为普通ip
要求:输出内容为 virbr0 192.168.122.1
sed方法:sed -n '/^[^ ]/{N;s/\(^[^ ]*\).*addr:\([0-9.]\+\).*/\1 \2/p}' test
awk方法: awk '/^[^ ]/{a=$1;getline;b=substr($2,6);if(b~/^[0-9]/) print a,b}' test