Help for this page

Select Code to Download


  1. or download this
    my @paths = qw[
      filepart1
      filepart2
    ...
         my $path = `find /partial/prefix/path -name "*$_*"`;
         # ...
    }
    
  2. or download this
    foreach (paths())
    {
         my $path = `find /partial/prefix/path -name "*$_*"`;
    ...
            filepartN
         ];
    }