Help for this page

Select Code to Download


  1. or download this
    #!/usr/local/perl-5.6.1/bin/perl
    use strict;
    ...
    me@unixsystem:/tmp# ./fp.pl
    open failed Died at ./fp.pl line 6.
    
  2. or download this
    use strict;
    $|=1;
    ...
    if ($@) {
      print "open failed $@";
    }