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'


posted @ 2022-04-18 16:27  惊起千层浪  阅读(175)  评论(0编辑  收藏  举报