Help for this page

Select Code to Download


  1. or download this
    $ perl -e'eval{open my $fh, ">", "/dev/full"; print $fh "Foo\n";}; pri
    +nt $!'
    No space left on device
    
  2. or download this
    use Fatal qw/open close/;
    {
        $! = undef;
    ...
        print $fh 'short text' or die $!;
    }
    die $! if $!;