Help for this page

Select Code to Download


  1. or download this
    my($first) = (sort @files)[0];
    my($last) = (sort @files)[-1];
    
  2. or download this
    my $file = "/some/file/name.txt";
    my $filename;
    ...
        die "Weird file name format: '$filename'";
    };
    print "Got $filename";