3、利用sed 取出ifconfig命令中本机的IPv4地址
3、利用sed 取出ifconfig命令中本机的IPv4地址
ifconfig eth0 | sed -nr '2s/.inet ([0-9.]+) ./\1/p'
ifconfig eth0 | sed -nr '2s@[^0-9]+([0-9.]+).@\1@p'
ifconfig eth0 | sed -nr '/inet /s#(.inet)(.)(n.)#\2#gp'
3、利用sed 取出ifconfig命令中本机的IPv4地址
ifconfig eth0 | sed -nr '2s/.inet ([0-9.]+) ./\1/p'
ifconfig eth0 | sed -nr '2s@[^0-9]+([0-9.]+).@\1@p'
ifconfig eth0 | sed -nr '/inet /s#(.inet)(.)(n.)#\2#gp'