Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I have multiple .txt files for my flatfile database. Each piece of information in the .txt file is on a new line so i can access it by: @cinfo = <FILEHANDLE>;
Then I get to the indiviual piece of information by using $cinfo[0], $cinfo[1] etc...
Now i need to make $cinfo1 go from 1 to 0 which isn't too difficult BUT i need to do it in ALL the .txt files in that directory.
Any Suggestions?