Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: How do I read the files in @ARGV one by one

by merlyn (Sage)
on Mar 19, 2001 at 21:48 UTC ( [id://65482]=note: print w/replies, xml ) Need Help??


in reply to How do I read the files in @ARGV one by one

@ARGV = $_, push @data, $_, <> for @{[@ARGV]};
Hmm. There was some other clever trick to dup a list too, but I can't recall now.

-- Randal L. Schwartz, Perl hacker


update: Yeah, it's
@ARGV = $_, push @data, $_, <> for map $_, @ARGV;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (3)
As of 2024-04-19 17:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found