Help for this page

Select Code to Download


  1. or download this
    my $url = ' http://www.perlmonks.com/foo?bar=baz';
    
    ...
    say "path:        " . $ff->path;
    say "file:        " . $ff->file;
    say "output_file: " . $ff->output_file;
    
  2. or download this
    ## outputs:
    
    ...
    path:        //www.perlmonks.com/    # <- error
    file:        foo?bar=baz
    output_file: foo
    
  3. or download this
    #!/usr/bin/env perl -w
    use strict;
    ...
    print "$output_name\n";
    
    __END__
    
  4. or download this
    ## outputs:
    v2_ITA_12-Seiter_Programm_1207_web.pdf
    
  5. or download this