Re: lstat($_)->mtime fails

2003-02-05 Thread Arild Jensen
On Tue, 4 Feb 2003, Wiggins d'Anconia wrote: > Arild Jensen wrote: > > I am trying to get the mtime of a bunch of files and directores. However, > > it fails after the first two files/dirs. I don't see why it should. I am > > an experienced sysadmin and a beginner Perl coder (obviously). > > >

Re: lstat($_)->mtime fails

2003-02-05 Thread Rob Dixon
Arild Jensen wrote: > I am trying to get the mtime of a bunch of files and directores. > However, it fails after the first two files/dirs. I don't see why it > should. I am an experienced sysadmin and a beginner Perl coder > (obviously). > > #!/usr/bin/perl -w > > use strict; > use File::Find; > us

Re: lstat($_)->mtime fails

2003-02-04 Thread Wiggins d'Anconia
Arild Jensen wrote: I am trying to get the mtime of a bunch of files and directores. However, it fails after the first two files/dirs. I don't see why it should. I am an experienced sysadmin and a beginner Perl coder (obviously). Help. Source code: #!/usr/bin/perl -w use strict; use File::

lstat($_)->mtime fails

2003-02-04 Thread Arild Jensen
I am trying to get the mtime of a bunch of files and directores. However, it fails after the first two files/dirs. I don't see why it should. I am an experienced sysadmin and a beginner Perl coder (obviously). Help. Source code: #!/usr/bin/perl -w use strict; use File::Find; use File::stat;