Probably not the best solution (I'm no good bash programmer), but it will work :-P

    RUN=''; while [[ "e$RUN" == "e" ]]; do RUN=`XXXX`; done ; echo $RUN

Just replace XXXX with your command call, e.g. try using "*echo*" and it will never return (as echo never prints anything to stdout), however if you use "*echo test*" it will terminate at once and finally print out test.