Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

File Input and Output

by root (Monk)
on Nov 10, 1999 at 02:36 UTC ( [id://960]=perltutorial: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    open(FILE, "data.txt");          #opens data.txt in read-mode
    while(<FILE>){                   #reads line by line from FILE which i
    +s the filehandle for data.txt
    ...
       print "Saw $_ in data.txt\n"; #shows you what we have read
    }
    close FILE;                      #close the file.
    
  2. or download this
    open FILE, ">keylogger.dat";  #opens file to be written to
    while(<>){                    #while we're getting input from the keyb
    +oard
       print FILE $_;             #write it to our file
    }
    close FILE;                   #then close our file.
    

Log In?
Username:
Password:

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

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

    No recent polls found