Help for this page

Select Code to Download


  1. or download this
    if($variable < $threshold) {
        my $command = '/usr/bin/blah';
    ...
    else {
        ...
    }
    
  2. or download this
    open ( COMMAND, " $command $updatestring | ") or die $!;
    while(<COMMAND>) {
         ....
    }