in reply to no output or error received
Hardly surprising. You have:
no warnings "all";
See warnings. You don't check that you're opening files successfully , see open, check $!. To write to your file use:
print OFILE "$name\n";
Try adding:
use strict; use warnings;
Declare your variables, change how you're using open as per the documentation. It looks like you could benifit from learning the basics:
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: no output or error received
by Loops (Curate) on Jun 28, 2013 at 09:55 UTC |