- or download this
use strict;
use warnings;
open(my $fh,'>:unix','abc.txt') or die $!;
print $fh "one line\n"
- or download this
use strict;
use warnings;
...
close $fh;
# No error message on unlink
unlink 'abc.txt' or die $!;
- or download this
use strict;
use warnings;
...
close $fh;
# Error message on unlink
unlink 'abc.txt' or die $!;