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

Re^3: unwanted ARGV in subroutine

by perl_walker (Novice)
on Oct 30, 2012 at 07:06 UTC ( [id://1001465]=note: print w/replies, xml ) Need Help??


in reply to Re^2: unwanted ARGV in subroutine
in thread unwanted ARGV in subroutine

Hi rizzler

Try this

sub addheader{ my($infile,$header)=@_; open(FILE, "$infile"); my $text=do {local $/; <FILE>}; close FILE; open(FILE,">$infile"); print FILE $header; print FILE $text; close FILE; }

Replies are listed 'Best First'.
Re^4: unwanted ARGV in subroutine
by Anonymous Monk on Oct 30, 2012 at 07:10 UTC
    Please don't try that :) it doesn't use error checking ... If you want to copy a file use File::Copy, for moving File::Move

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (5)
As of 2024-04-19 15:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found