Help for this page

Select Code to Download


  1. or download this
    system($check . $elt);
    if (1 == $? >> 8) {
      chomp $elt;
      print blah blah;
    }
    
  2. or download this
    my $count;
    foreach $i (@$elt) {      # @$elt is an abbreviation of @{$elt} -- see
    + perlreftut
      system($check . $i);    # using $i instead of $elt
    ...
      }
    }
    ## use $count here