当前位置: 技术问答>linux和unix
怎样才能 ping 两次呢
来源: 互联网 发布时间:2016-12-16
本文导语: 将/etc/hosts文件中的所有地址都ping 2次 ,这个shell程序怎么写 | #!/bin/bash for ip in $(cut -d' ' -f1 /etc/hosts) do ping -c2 $ip done
将/etc/hosts文件中的所有地址都ping 2次 ,这个shell程序怎么写
|
#!/bin/bash
for ip in $(cut -d' ' -f1 /etc/hosts)
do
ping -c2 $ip
done
for ip in $(cut -d' ' -f1 /etc/hosts)
do
ping -c2 $ip
done