Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    $obj->do_some_work;
    
    sub code { ... }; # not always
    
  2. or download this
    my @files = glob( 'run_me/*' );
    while (  my $file = shift @files ) {
    ...
      system( $cmd ) == 0 or die "something wrong: $?\n";
    
    }