in reply to Using $"
Tip #1 from the Basic debugging checklist: warnings
Filehandle INFO opened only for input at ...
Filehandle INFO opened only for input at ... (W io) You tried to write on a read-only filehandle. If you inten +ded it to be a read-write filehandle, you needed to open it with "+<" +or "+>" or "+>>" instead of with "<" or nothing. If you intended onl +y to write the file, use ">" or ">>". See perlfunc/open.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Using $"
by Bugz (Acolyte) on Dec 22, 2014 at 20:02 UTC | |
|
Re^2: Using $"
by Bugz (Acolyte) on Dec 22, 2014 at 19:57 UTC | |
by Lotus1 (Vicar) on Dec 22, 2014 at 20:10 UTC |