Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^3: How can you sysread an entire file?

by esskar (Deacon)
on Jan 12, 2006 at 23:14 UTC ( [id://522842]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    open(FILE, '>', 'foo.bar') or die "Daim!";
    print FILE "\n";
    close FILE;
    
  2. or download this
    use strict;
    use warnings;
    ...
    binmode FILE;
    print FILE "\n";
    close FILE;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (4)
As of 2024-04-18 04:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found