I'm suprised I haven't seen a brief perl one-liner mentioned here:
<pre><code>perl -e 'do { sleep(1); $_ = `command`; print $_; } until (m/search/);'</code></pre>

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#.