Advertisement
Advertisement
| 05.08.2008 at 01:27PM PDT, ID: 23387559 | Points: 500 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: |
#!/bin/sh # This is a ping report ( echo "From: admin@example.com" echo "To: netadmin@example.com" echo "Subject: Ping Report" echo "" echo "** Automated System Status Report **" echo date echo echo -n "RESULTS: " ; /sbin/ping -s 1470 -c 100 -q problemchild.example.com echo echo echo -n "_______________________________________________" echo echo -n "This script is /Users/hcs/bin/, and runs every 15 mins" ) | /usr/sbin/sendmail -it exit 0 fi done |