I'm suprised I haven't seen a brief perl one-liner mentioned here:
perl -e 'do { sleep(1); $_ = `command`; print $_; } until (m/search/);'
Perl is a really nice language for stuff like this. Replace "command" with the command you want to repeatedly run. Replace "search" with what you want to search for. If you want to search for something with a slash in it, then replace m/search/ with m#search string with /es#.
Also, perl runs on lots of different platforms, including Win32, and this will work wherever you have a perl installation. Just change your command appropriately.
