mikejones has asked for the wisdom of the Perl Monks concerning the following question:
integrated with File::Find.
I was playing with
$fs is an NFS filesystem but the code below with a non-NFS returns the same thing? please explain! thank you!$ perl -le '$fs=qq(/export/var/opt/xefs01); $mt = ( stat("$fs") )[6]; +print $mt;' 0
perl -le '$fs=qq(/opt); $mt = ( stat("$fs") )[6]; print $mt;' 0 <p/>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: follow up to "http://www.perlmonks.org/?node_id=101209" NFS stuff
by pc88mxer (Vicar) on Apr 25, 2008 at 20:02 UTC |