Help for this page

Select Code to Download


  1. or download this
    sub do_stuff {
        my $dir = shift;
        my $pattern = shift;
        ...
    
  2. or download this
    my ($dir, $pattern) = @_;
    
  3. or download this
    $what     --> $pattern_str
    @t        --> @patterns
    $f        --> $pattern 
    $file2md5 --> $fname
    
  4. or download this
    "$file2md5"
    
  5. or download this
    my $fname_out = 'name.txt';
    
    ...
    
    #and then...
    print $OUTFILE "whatever";