Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^3: Text File Manipulation

by soonix (Canon)
on Jan 14, 2020 at 11:54 UTC ( [id://11111404]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    print "something";
    
  2. or download this
    print STDOUT "something";
    
  3. or download this
            open ($fh, '>', $temporary_fileName) or die $!;
            `echo "... long string ..." > $temporary_fileName`;
            close ($fh);
    
  4. or download this
            open ($fh, '>', $temporary_fileName) or die $!;
            print$fh "... long string ...";
            close ($fh);
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (5)
As of 2024-04-23 20:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found