Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -T
    use strict;
    ...
    
    my $whereami = $FindBin::Bin;
    open my $fh, '<:encoding(UTF-8)', $whereami or die;
    
  2. or download this
    $whereami =~ /^(.*)$/ and $whereami = $1;