2014年8月21日 星期四

使用bash script 取得網路卡 IP

for i in $(ls /sys/class/net/);
do ip addr show $i |grep inet |while read -r j ;
do ip=${j#*inet6};ip=${ip#*inet}; echo $ip; done;
done;