Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

read()

by Parham (Friar)
on Dec 31, 2001 at 07:01 UTC ( [id://135323]=perltutorial: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        open (FILE1, "$original"); 
        open (FILE2, ">$copy"); 
    ...
    
        close (FILE1);
        close (FILE2);
    
  2. or download this
        open (FILE1, "$original"); 
        while ( read(FILE1,$file_contents,1024) ) { 
          print "$file_contents"; 
        }
        close (FILE1);
    

Log In?
Username:
Password:

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

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

    No recent polls found