Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

use Fatal;

by cLive ;-) (Prior)
on Jan 10, 2002 at 04:12 UTC ( [id://137626]=perlmeditation: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    open(FILE,'/path/to/file');
    print while (<FILE>);
    ...
    open(FILE2,'/path/to/file2');
    print while (<FILE2>);
    close(FILE2);
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    open(FILE2,'/path/to/file2') || die $!;
    print while (<FILE2>);
    close(FILE2);
    
  3. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    open(FILE2,'/path/to/file2');
    print while (<FILE2>);
    close(FILE2);
    

Log In?
Username:
Password:

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

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

    No recent polls found