Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: No Such File or Directory Error

by morgon (Priest)
on Aug 28, 2012 at 00:17 UTC ( [id://990095]=note: print w/replies, xml ) Need Help??


in reply to No Such File or Directory Error

The lines read via the angle-operator still contain a newline that you need to get rid of if you want to use it as a file name.

So you need to replace

while (<FH>) { push (@lines, $_); }
with
while (<FH>) { chomp; # removes the newline from $_ push (@lines, $_); }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://990095]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (2)
As of 2024-04-24 23:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found