Talk: PINGUIN

From Teknologisk videncenter
Revision as of 05:19, 13 February 2009 by Heth (talk | contribs) (New page: Hi, have a suggestion to some corrections. The program is not finished and fully tested. Do you have an idea how to test it? <source lang="bash"> #!/bin/bash A=0 while test $K="yes" do ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Hi, have a suggestion to some corrections. The program is not finished and fully tested. Do you have an idea how to test it?

#!/bin/bash
A=0

while test $K="yes"
do
  adresses="92.168.142.1 mars.tekkom.dk 172.16.4.77"
  for adress in $adresses
  do

    if ping -c 1 $adress >/dev/null
      then echo "Ping $adress  succeded."
      else
        echo "Ping $adress Failed."
        A=`expr $A + 1`
      fi
  done

  if test $A -ge 3
    then
      A=0
      write astifl ["3 times failed"]|
      echo ["3 times failed"] | mail -s "Ping Error" astifl
  fi

  sleep 60

done