Jo for lists and groups wrote:
Are you supposed to be printing something here?
Somewhat newb, but this doesn't look right to me:
print (FO);
That is short for:
print( FO $_ );
The $_ variable is the default in a lot of places in Perl code.
I'm guessing you want to remove commas and so are rewriting the line into a
new file after subst. I'd probably do
print FO "$_";
Why are you stringifying the variable $_ when print() will convert it to
a string anyway?
I suspect your way may just be leaving the server hanging?
John
--
Those people who think they know everything are a great
annoyance to those of us who do. -- Isaac Asimov
--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/