for_while_until

Posted xiaofeng666

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for_while_until相关的知识,希望对你有一定的参考价值。

for_while_until_ping.sh

#!/usr/bin/bash

#for while until ping

#v1 by xfeng 2019.02.30

for i in {2..254}

do

  {

  ip=192.168.8.$i

  ping -c1 -W1 $ip &>/dev/null    #W1代表ping的最大时长为1s,c1代表ping的次数

  if [ $? -eq 0 ];then

     echo “$ip is up...”

  fi

  }&

wait                #{}&代表在后台同时执行,wait代表上述后台的任务执行后再执行后面的内容

echo "All is finished"

done

 

 

while_for_until_ping.sh

i=2

while [ $i -le 254 ];do 

{

  ip=192.168.8.$i

  ping -c1 -W1 $ip &>/dev/null    #W1代表ping的最大时长为1s,c1代表ping的次数

  if [ $? -eq 0 ];then

     echo “$ip is up...”

  fi

  }&

  let i++

done

 

 

until_while_for_ping.sh

i=2

until [ $i -gt 254];do

  {

  ip=192.168.8.$i

  ping -c1 -W1 $ip &>/dev/null    #W1代表ping的最大时长为1s,c1代表ping的次数

  if [ $? -eq 0 ];then

     echo “$ip is up...”

  fi

  }&

  let i++

done

 

以上是关于for_while_until的主要内容,如果未能解决你的问题,请参考以下文章