Help for this page

Select Code to Download


  1. or download this
    tail -f /logs/mail.log | sed -e '/last message repeated/d' -e 's/messa
    +ge forwarded from myhost: //i'
    
  2. or download this
    tail -f /logs/mail.log | awk '$4~/host/ { print }'
    
  3. or download this
    (while true ; do uptime ; sleep 3 ; done) | perl -ne '@load =  /\d\.\d
    +\d/g ; print "\a" if $load[0] < .4 ; print "@load\n"'