Search Results

4
votes

How do I run a command in a loop until I see some string in stdout?

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 lan …