Talk: PINGUIN

From Teknologisk videncenter
Revision as of 05:21, 13 February 2009 by Heth (talk | contribs)
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?
Remember that the pipe | is only used for sending STDOUT from one command to STDIN to the next command. as in

  find / | wc -l

The following will fail, because

#!/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