There's a bunch of ways to do this, the first that came to mind was: 

    OUTPUT=""; 
    while [ `echo $OUTPUT | grep -c somestring` = 0 ]; do 
      OUTPUT=`$cmd`; 
    done

Where $cmd is your command to execute.