in reply to Re^2: Perl migration hp-ux -> Linux ( perlport, File::Spec->devnull )
in thread Perl migration hp-ux -> Linux

Another contributory factor might be that you are opening STDIN for output instead of input i.e. more normal would be:
open STDIN, '/dev/null' || die "Can't read /dev/null: $!";

One world, one people

  • Comment on Re^3: Perl migration hp-ux -> Linux ( perlport, File::Spec->devnull )
  • Download Code