Linux命令练习第三关(2)

3.请执行命令取出linux中eth0的IP地址(请用cut,awk,sed命令答)。

Linux命令练习第三关(2)_第1张图片

cut方法:

[root@ianLinux ~]# ifconfig eth0|sed -n '2p'
          inet addr:192.168.0.199  Bcast:192.168.0.255  Mask:255.255.255.0
[root@ianLinux ~]# ifconfig eth0|sed -n '2p'|cut -d":" -f2|cut -d" " -f1

这里写图片描述

awk方法:

[root@ianLinux ~]# ifconfig eth0|sed -n '2p'
          inet addr:192.168.0.199  Bcast:192.168.0.255  Mask:255.255.255.0
[root@ianLinux ~]# ifconfig eth0|sed -n '2p'|awk -F ":" '{print $2}'|awk '{print $1}'

这里写图片描述

awk多分隔符:

[root@ianLinux ~]# ifconfig eth0|awk -F '[: ]+' 'NR==2 {print $4}'

‘+’重复一个或多个前面的字符。
这里写图片描述

sed后向引用方法:

[root@ianLinux ~]# ifconfig eth0|sed -n '2p'           
          inet addr:192.168.0.199  Bcast:192.168.0.255  Mask:255.255.255.0
[root@ianLinux ~]# ifconfig eth0|sed -nr '2s#^.*dr:(.*)  B.*$#\1#gp'
192.168.0.199

这里写图片描述

awk与sed配合使用

awk的过滤列,sed的替换

[root@ianLinux ~]# ifconfig eth0|awk '/inet addr/{print $2}'|sed 's#^.*:##g'

这里写图片描述

grep方法:

[root@ianLinux ~]# ifconfig eth0|grep -Eo '1[0-9]{2}\.[0-9]{1,3}\.[0-9]{1,3}\.1[0-9]{1,2}'

这里写图片描述

grep与cut配合方法:

[root@ianLinux ~]# grep IPADDR /etc/sysconfig/network-scripts/ifcfg-eth0|cut -d"=" -f2

这里写图片描述

grep与awk配合方法:

[root@ianLinux ~]# ifconfig eth0|grep "inet addr"|awk -F'[ :]+' '{print $4}'

这里写图片描述

你可能感兴趣的:(Linux命令练习)