As described in
$! and
Error Indicators in
perlvar,
"A successful system or library call does not set the variable [$!] to zero." This means you cannot test
$! and expect to get a meaningful result. Note that despite your reported error, your code executes the script with no problem. Consider:
#!/usr/bin/perl
use strict; use warnings;
my $do_me="do_me.pl";
print "(1)Can not read $do_me: $!\n" if $!;
foreach my $ending ("\n", '') {
print "Create file with",($ending?'':'out')," newline\n";
open(OUT,'>',$do_me) or die "$!";
print "(2)Can not read $do_me: $!\n" if $!;
print OUT "q(string)$ending";
close OUT;
my $result=do $do_me;
print "(3)Can not read $do_me: $!\n" if $!;
print "Can not evaluate $do_me: $@\n" if $@;
print("$result\n") if defined $result;
}
print "(4)Can not read $do_me: $!\n" if $!;
outputs:
(1)Can not read do_me.pl: Bad file descriptor
Create file with newline
(2)Can not read do_me.pl: Bad file descriptor
string
Create file without newline
(3)Can not read do_me.pl: Bad file descriptor
string
(4)Can not read do_me.pl: Bad file descriptor
As to why you get that pattern, my guess is internal try-catch structures within the open and do blocks.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.