Help for this page

Select Code to Download


  1. or download this
        do{
            ## do something that may or may not change $condition
        } until( $condition )
    
  2. or download this
        ## print "foo" until $count becomes 5
        my $count = 0;
    ...
        do {
            system( "cmd" );
        } until( $? == 0 );