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

Re: Append to beginning of line (multi line file)

by krujos (Curate)
on Jan 23, 2003 at 20:21 UTC ( [id://229415]=note: print w/replies, xml ) Need Help??


in reply to Append to beginning of line (multi line file)

You could just open and write the last one at the end. This should also fix your numbering problem.
open(INPUTFILE, "$file"); open(OUTPUTFILE, ">$outputfile"); my $counter = 1; while (<INPUTFILE>) { print OUTPUTFILE "$counter. $_"; $counter++; } close(INPUTFILE); close(OUTPUTFILE);
If you want to copy over the old file, just do it at the end.

UPDATE: You should probably check to make sure the files actually open (using die) like you did in your original code.

UPDATE2: Only now does command line register in krujos' head. Doh!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (3)
As of 2024-04-20 01:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found