Help for this page

Select Code to Download


  1. or download this
        open(FIN,"< $full_path") || print "File Not Found"; 
            binmode FIN;
            $buffer = join '', <FIN>;
        close(FIN);
        print $buffer;
    
  2. or download this
    open my $fin, '<:raw', $full_path or die WHATEVER;
    local \$;  # or use File::Slurp
    print <$fin>;
    
  3. or download this
    #!/usr/bin/perl -T
    
    ...
    };
    
    __END__