#
# Alert 
#        Alert is a shell script that allows  WIDZ to send alerts
#
#  By FatBloke
#
# Action 1:Write to the console | tty
echo $1 > `tty`         
echo $1 > /dev/console
#
# Action 2:Write to the Syslog
logger -p security.notice $1
# Action 3:Write to the mail  
#sendmail blah blah       
# Action 4:Write to the snmp  
#snmptrap blah blah        

