How do I run a command in a loop until I see some string in stdout? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T14:50:04Z http://stackoverflow.com/feeds/question/128853 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/128853/how-do-i-run-a-command-in-a-loop-until-i-see-some-string-in-stdout 10 How do I run a command in a loop until I see some string in stdout? Alex Miller 2008-09-24T18:15:11Z 2008-10-03T02:37:02Z <p>I'm sure there's some trivial one-liner with perl, ruby, bash whatever that would let me run a command in a loop until I observe some string in stdout, then stop. Ideally, I'd like to capture stdout as well, but if it's going to console, that might be enough. </p> <p>The particular environment in question at the moment is RedHat Linux but need same thing on Mac sometimes too. So something, generic and *nixy would be best. Don't care about Windows - presumably a *nixy thing would work under cygwin.</p> <p>UPDATE: Note that by "observe some string" I mean "stdout contains some string" not "stdout IS some string". </p> http://stackoverflow.com/questions/128853/how-do-i-run-a-command-in-a-loop-until-i-see-some-string-in-stdout/128872#128872 4 Answer by Jay for How do I run a command in a loop until I see some string in stdout? Jay 2008-09-24T18:18:13Z 2008-09-24T18:47:09Z <p>There's a bunch of ways to do this, the first that came to mind was: </p> <pre><code>OUTPUT=""; while [ `echo $OUTPUT | grep -c somestring` = 0 ]; do OUTPUT=`$cmd`; done </code></pre> <p>Where $cmd is your command to execute.</p> <p>For the heck of it, here's a BASH function version, so you can call this more easily if it's something you're wanting to invoke from an interactive shell on a regular basis: </p> <pre><code>function run_until () { OUTPUT=""; while [ `echo $OUTPUT | grep -c $2` = 0 ]; do OUTPUT=`$1`; echo $OUTPUT; done } </code></pre> <p><em>Disclaimer: only lightly tested, may need to do some additional escaping etc. if your commands have lots of arguments or the string contains special chars.</em></p> <p><strong>EDIT</strong>: Based on feedback from Adam's comment - if you <em>don't</em> need the output for any reason (i.e. don't want to display the output), then you can use this shorter version, with less usage of backticks and therefore less overhead: </p> <pre><code>OUTPUT=0; while [ "$OUTPUT" = 0 ]; do OUTPUT=`$cmd | grep -c somestring`; done </code></pre> <p>BASH function version also: </p> <pre><code>function run_until () { OUTPUT=0; while [ "$OUTPUT" = 0 ]; do OUTPUT=`$1 | grep -c $2`; done } </code></pre> http://stackoverflow.com/questions/128853/how-do-i-run-a-command-in-a-loop-until-i-see-some-string-in-stdout/128875#128875 1 Answer by zigdon for How do I run a command in a loop until I see some string in stdout? zigdon 2008-09-24T18:18:23Z 2008-09-24T18:18:23Z <pre><code>while (/bin/true); do OUTPUT=`/some/command` if [[ "x$OUTPUT" != "x" ]]; then echo $OUTPUT break fi sleep 1 done </code></pre> http://stackoverflow.com/questions/128853/how-do-i-run-a-command-in-a-loop-until-i-see-some-string-in-stdout/128886#128886 1 Answer by Mecki for How do I run a command in a loop until I see some string in stdout? Mecki 2008-09-24T18:21:39Z 2008-09-24T22:20:07Z <p>EDIT: My original answer was assuming that "some string" means "any string". If you need to look for a specific one, Perl is probably your best option, since almost nothing can beat Perl when it comes to REGEX matching.</p> <p>However, if you can't use Perl for any reason (you can expect Perl to be present in most Linux distros, but nobody forces a user to install it, though Perl may not be available), you can do it with the help of grep. However, some of the grep solutions I have seen so far are suboptimal (they are slower than would be necessary). In that case I would rather do the following:</p> <pre><code>MATCH=''; while [[ "e$MATCH" == "e" ]]; do MATCH=`COMMAND | grep "SOME_STRING"`; done; echo $MATCH </code></pre> <p>Replace <em>COMMAND</em> with the actually command to run and *SOME_STRING* with the string to search. If SOME_STRING is found in the output of COMMAND, the loop will stop and print the output where SOME_STRING was found.</p> <p>ORIGINAL ANSWER:</p> <p>Probably not the best solution (I'm no good bash programmer), but it will work :-P</p> <pre><code>RUN=''; while [[ "e$RUN" == "e" ]]; do RUN=`XXXX`; done ; echo $RUN </code></pre> <p>Just replace XXXX with your command call, e.g. try using "<em>echo</em>" and it will never return (as echo never prints anything to stdout), however if you use "<em>echo test</em>" it will terminate at once and finally print out test.</p> http://stackoverflow.com/questions/128853/how-do-i-run-a-command-in-a-loop-until-i-see-some-string-in-stdout/128905#128905 10 Answer by Derek Park for How do I run a command in a loop until I see some string in stdout? Derek Park 2008-09-24T18:26:22Z 2008-09-24T18:26:22Z <p>In Perl:</p> <pre><code>#!/usr/local/bin/perl -w if (@ARGV != 2) { print "Usage: watchit.pl &lt;cmd&gt; &lt;str&gt;\n"; exit(1); } $cmd = $ARGV[0]; $str = $ARGV[1]; while (1) { my $output = `$cmd`; print $output; # or dump to file if desired if ($output =~ /$str/) { exit(0); } } </code></pre> <p>Example:</p> <pre><code>[bash$] ./watchit.pl ls stop watchit.pl watchit.pl~ watchit.pl watchit.pl~ ... # from another terminal type "touch stop" stop watchit.pl watchit.pl~ </code></pre> <p>You might want to add a sleep in there, though.</p> http://stackoverflow.com/questions/128853/how-do-i-run-a-command-in-a-loop-until-i-see-some-string-in-stdout/130406#130406 1 Answer by skoob for How do I run a command in a loop until I see some string in stdout? skoob 2008-09-24T22:46:58Z 2008-09-24T22:46:58Z <pre><code>CONT=1; while [ $CONT -gt 0 ]; do $CMD | tee -a $FILE | grep -q $REGEXP; CONT=$? ; done </code></pre> <p>The tee command can capture stdout in a pipe while still passing the data on, and -a makes it append to the file instead of overwriting it every time. grep -q will return 0 if there was a match, 1 otherwise and doesn't write anything to stdout. $? is the return value of the previous command, so $CONT will be the return value of grep in this case.</p> http://stackoverflow.com/questions/128853/how-do-i-run-a-command-in-a-loop-until-i-see-some-string-in-stdout/130521#130521 0 Answer by Dave Webb for How do I run a command in a loop until I see some string in stdout? Dave Webb 2008-09-24T23:10:30Z 2008-09-25T16:11:14Z <p>A simple way to do this would be</p> <pre><code>until `/some/command` do sleep 1 done </code></pre> <p>The backticks around the command make the <code>until</code> test for some output to be returned rather than testing the exit value of the command.</p> http://stackoverflow.com/questions/128853/how-do-i-run-a-command-in-a-loop-until-i-see-some-string-in-stdout/133040#133040 1 Answer by ordnungswidrig for How do I run a command in a loop until I see some string in stdout? ordnungswidrig 2008-09-25T12:35:27Z 2008-09-25T12:35:27Z <p><code>grep -c 99999</code> will print 99999 lines of context for the match (I assume this will be enough):</p> <pre><code>while true; do /some/command | grep expected -C 99999 &amp;&amp; break; done </code></pre> <p>or</p> <pre><code>until /some/command | grep expected -C 9999; do echo -n .; done </code></pre> <p>...this will print some nice dots to indicate progress.</p> http://stackoverflow.com/questions/128853/how-do-i-run-a-command-in-a-loop-until-i-see-some-string-in-stdout/160803#160803 3 Answer by Mark Santesson for How do I run a command in a loop until I see some string in stdout? Mark Santesson 2008-10-02T03:39:29Z 2008-10-03T02:37:02Z <p>I'm suprised I haven't seen a brief perl one-liner mentioned here:</p> <pre><code>perl -e 'do { sleep(1); $_ = `command`; print $_; } until (m/search/);'</code></pre> <p>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#.</p> <p>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.</p>