3 Can't open bidirectional pipe [Perl_do_open9]
6 Missing command in piped open [Perl_do_open9]
9 Missing command in piped open [Perl_do_open9]
12 warn(warn_nl, "open"); [Perl_do_open9]
15 close() on unopened filehandle %s [Perl_do_close]
16 $a = "fred";close("$a")
18 tell() on closed filehandle [Perl_do_tell]
19 $a = "fred";$a = tell($a)
21 seek() on closed filehandle [Perl_do_seek]
22 $a = "fred";$a = seek($a,1,1)
24 sysseek() on closed filehandle [Perl_do_sysseek]
25 $a = "fred";$a = seek($a,1,1)
27 warn(warn_uninit); [Perl_do_print]
30 -x on closed filehandle %s [Perl_my_stat]
31 close STDIN ; -x STDIN ;
33 warn(warn_nl, "stat"); [Perl_my_stat]
36 warn(warn_nl, "lstat"); [Perl_my_lstat]
39 Can't exec \"%s\": %s [Perl_do_aexec5]
41 Can't exec \"%s\": %s [Perl_do_exec3]
43 Filehandle %s opened only for output [Perl_do_eof]
46 Mandatory Warnings ALL TODO
48 Can't do inplace edit: %s is not a regular file [Perl_nextargv]
51 Can't do inplace edit: %s would not be unique [Perl_nextargv]
52 Can't rename %s to %s: %s, skipping file [Perl_nextargv]
53 Can't rename %s to %s: %s, skipping file [Perl_nextargv]
54 Can't remove %s: %s, skipping file [Perl_nextargv]
55 Can't do inplace edit on %s: %s [Perl_nextargv]
59 # doio.c [Perl_do_open9]
61 open(F, '|'.($^O eq 'VMS' ? 'mcr ':'')."$^X -e 1|");
64 open(G, '|'.($^O eq 'VMS' ? 'mcr ':'')."$^X -e 1|");
67 Can't open bidirectional pipe at - line 3.
69 # doio.c [Perl_do_open9]
75 Missing command in piped open at - line 3.
77 # doio.c [Perl_do_open9]
83 Missing command in piped open at - line 3.
85 # doio.c [Perl_do_open9]
91 Unsuccessful open on filename containing newline at - line 3.
93 # doio.c [Perl_do_close] <<TODO
94 use warnings 'unopened' ;
96 no warnings 'unopened' ;
99 close() on unopened filehandle fred at - line 3.
101 # doio.c [Perl_do_tell Perl_do_seek Perl_do_sysseek Perl_my_stat]
105 $a = seek(STDIN,1,1);
106 $a = sysseek(STDIN,1,1);
118 $a = seek(STDIN,1,1);
119 $a = sysseek(STDIN,1,1);
129 tell() on closed filehandle STDIN at - line 4.
130 seek() on closed filehandle STDIN at - line 5.
131 sysseek() on closed filehandle STDIN at - line 6.
132 -x on closed filehandle STDIN at - line 7.
133 stat() on closed filehandle STDIN at - line 8.
134 tell() on unopened filehandle at - line 10.
135 seek() on unopened filehandle at - line 11.
136 sysseek() on unopened filehandle at - line 12.
138 # doio.c [Perl_do_print]
139 use warnings 'uninitialized' ;
141 no warnings 'uninitialized' ;
144 Use of uninitialized value in print at - line 3.
146 # doio.c [Perl_my_stat Perl_my_lstat]
154 Unsuccessful stat on filename containing newline at - line 3.
155 Unsuccessful stat on filename containing newline at - line 4.
157 # doio.c [Perl_do_aexec5]
159 exec "lskdjfalksdjfdjfkls","" ;
161 exec "lskdjfalksdjfdjfkls","" ;
164 Can't exec "lskdjfalksdjfdjfkls": .+
166 # doio.c [Perl_do_exec3]
168 exec "lskdjfalksdjfdjfkls", "abc" ;
170 exec "lskdjfalksdjfdjfkls", "abc" ;
173 Can't exec "lskdjfalksdjfdjfkls(:? abc)?": .+
175 # doio.c [Perl_nextargv]
177 my $filename = "./temp.dir" ;
178 mkdir $filename, 0777
179 or die "Cannot create directory $filename: $!\n" ;
181 local (@ARGV) = ($filename) ;
186 no warnings 'inplace' ;
187 local (@ARGV) = ($filename) ;
192 use warnings 'inplace' ;
193 local (@ARGV) = ($filename) ;
199 Can't do inplace edit: ./temp.dir is not a regular file at - line 9.
200 Can't do inplace edit: ./temp.dir is not a regular file at - line 21.
203 # doio.c [Perl_do_eof]
209 Filehandle STDOUT opened only for output at - line 3.