- 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;
- or download this
## outputs:
...
path: //www.perlmonks.com/ # <- error
file: foo?bar=baz
output_file: foo
- or download this
#!/usr/bin/env perl -w
use strict;
...
print "$output_name\n";
__END__
- or download this
## outputs:
v2_ITA_12-Seiter_Programm_1207_web.pdf
- or download this