#!/bin/csh # pingfred # ----------------------------------------------------------------------------- # C shell script to test Fred's e-mail addresses. # ----------------------------------------------------------------------------- # Revision History: # $Log$ # ----------------------------------------------------------------------------- if ($#argv != 1) then set verb = $0 echo "Usage: $verb:t time" echo "Example $verb:t 11:30" exit 1 endif set name = `hostname -s` mail -s "PingTest $1 from $name to fred@stluka.com..." fred@stluka.com < /home/fred/.signature #mail -s "PingTest $1 from $name to stluka@voicenet.com..." stluka@voicenet.com < /home/fred/.signature #mail -s "PingTest $1 from $name to fred@bristle.com..." fred@bristle.com < /home/fred/.signature mail -s "PingTest $1 from $name to fred2@bristle.com..." fred2@bristle.com < /home/fred/.signature mail -s "PingTest $1 from $name to stluka@comcast.net..." stluka@comcast.net < /home/fred/.signature mail -s "PingTest $1 from $name to FredStluka@gmail.com..." FredStluka@gmail.com < /home/fred/.signature # mail -s "PingTest $1 from $name to matt@brophy.org..." matt@brophy.org < /home/fred/.signature # mail -s "PingTest $1 from $name to fred@visibiz.com..." fred@visibiz.com < /home/fred/.signature #mail -s "PingTest $1 from $name to github@bristle.com..." github@bristle.com < /home/fred/.signature #mail -s "PingTest $1 from $name to android-apps@bristle.com..." android-apps@bristle.com < /home/fred/.signature #mail -s "PingTest $1 from $name to android-apps-lacalc@bristle.com..." android-apps-lacalc@bristle.com < /home/fred/.signature