centos 7
ifconfig ens32|grep "inet"|awk -F ' ' 'NR==1{print $2}'
centos6
ifconfig eth0|awk -F '[: ]+' 'NR==2{print $4 }'
本文共 161 字,大约阅读时间需要 1 分钟。
centos 7
ifconfig ens32|grep "inet"|awk -F ' ' 'NR==1{print $2}'
centos6
ifconfig eth0|awk -F '[: ]+' 'NR==2{print $4 }'
转载于:https://blog.51cto.com/sadoc/1921705