Skip to content

Instantly share code, notes, and snippets.

@reid
Created August 16, 2010 20:48
Show Gist options
  • Select an option

  • Save reid/527702 to your computer and use it in GitHub Desktop.

Select an option

Save reid/527702 to your computer and use it in GitHub Desktop.
<?php
$ret = 0;
$cmd = "yeti fixture.html --solo 1";
while (1) {
print "$cmd\n";
passthru($cmd, $ret);
if ($ret) exit($ret);
sleep(0.5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment