show/hide this revision's text 2 added 157 characters in body

A simple way to do this would be

until `/some/command`
do
  sleep 1
done

The backticks around the command make the until test for some output to be returned rather than testing the exit value of the command.

show/hide this revision's text 1

A simple way to do this would be

until `/some/command`
do
  sleep 1
done