show/hide this revision's text 3 added 171 characters in body

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.

show/hide this revision's text 2 added 313 characters in body

I'm suprised I haven't seen a brief perl one-liner mentioned here:

perl -e 'do { sleep(1); $_ = `dir`; command`; print $_; } until (m/some 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 string/);'for. If you want to search for something with a slash in it, then replace m/search/ with m#search string with /es#.

show/hide this revision's text 1

I'm suprised I haven't seen a brief perl one-liner:

perl -e 'do { sleep(1); $_ = `dir`; print $_; } until (m/some search string/);'