标签:
1.获得ip
#!/bin/bash ifconfig $1 |grep "inet addr:" |awk ‘{print $2}‘ |cut -c 6-
执行脚本
[root@xysys192 ~]# ./get_ip.sh eth0 192.168.0.100
自己零零碎碎写的一些脚本
原文地址:http://www.cnblogs.com/sysk/p/4685786.html