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 …
3
votes
I’m stuck in trying to grep anything just after `name=`
As detailed here, you want a positive lookbehind clause, such as:
grep -P '(?<=name=)[ A-Za-z0-9] …
