#!/bin/csh -f # tb_msf_count_beep # # Monitor the number of *.MSF index files in my Thunderbird email folder tree. # Beep and show new count when it changes. Use this to monitor them when they # start vanishing, to figure out why. set count = "" while ( 1 == 1 ) set old_count = "$count" set count = "`tb_msf_count`" if ("$count" != "$old_count") then beep "`date` $count" endif sleep 1 end