Subject: | Dumps to STDERR when trying to stat directories |
The following line of code:
my @bigfiles = find( size => ">$MIN_SIZE", in => $ROOTDIR );
Causes repeated instances of this warning to be dumped on STDERR.
Use of uninitialized value in numeric gt (>) at (eval 28) line 1.
This can of course be fixed with:
my @bigfiles = find( file => size => ">$MIN_SIZE", in => $ROOTDIR );
But you asked me to report it so you could fix it when you got a tuit.
(Perl 5.6.1 on RedHat Linux, 2.4.18 kernel)