Re: File::Find module help

2002-06-05 Thread drieux
On Wednesday, June 5, 2002, at 03:12 , James Kelty wrote: > Hello. > > I am using the File::Find module from Cpan to travers some filesystems to, > well, find a file. > Here is my small snippet of code. Basically what is happening is that the > sub is returning a 0 instead of the file name. What

Re: File::Find module help

2002-06-05 Thread John W. Krahn
James Kelty wrote: > > Hello. Hello, > I am using the File::Find module from Cpan to travers some filesystems to, > well, find a file. > Here is my small snippet of code. Basically what is happening is that the > sub is returning a 0 instead of the file name. What am I doing wrong? > > #!/usr/

Re: File::Find module help

2002-06-05 Thread Michael Fowler
On Wed, Jun 05, 2002 at 03:12:09PM -0700, James Kelty wrote: > I am using the File::Find module from Cpan to travers some filesystems to, > well, find a file. > Here is my small snippet of code. Basically what is happening is that the > sub is returning a 0 instead of the file name. What am I doin

File::Find module help

2002-06-05 Thread James Kelty
Hello. I am using the File::Find module from Cpan to travers some filesystems to, well, find a file. Here is my small snippet of code. Basically what is happening is that the sub is returning a 0 instead of the file name. What am I doing wrong? #!/usr/bin/perl -w use strict; use File::Find; us