RE: Final Code (I think it's gonna work!)

2002-09-18 Thread Timothy Johnson
You might want to try one more thing before you put it away. Add 'use strict'. It's a bit of a pain at first, but it's a very good habit to get into. -Original Message- From: Anthony Saffer [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 18, 2002 8:01 AM To: Perl Beginners List

Re: Final Code (I think it's gonna work!)

2002-09-18 Thread John W. Krahn
Anthony Saffer wrote: Hello Everyone, Hello, Here is the final code for my replacement script. I am about to test it out but I think it will work. Thanks to all who helped!! #!/usr/bin/perl -w use File::Find; my $FileCount = 0; my $LineCount = 0; sub process_files { my

Re: Final Code (I think it's gonna work!)

2002-09-18 Thread Tim Musson
Hey Timothy, My MUA believes you used Internet Mail Service (5.5.2650.21) to write the following on Wednesday, September 18, 2002 at 11:55:12 AM. I would also suggest 'use warnings;' instead of -w on your #!/perl line. See perldoc perllexwarn for more information. TJ You might