in reply to Removing youngest directory

Your specific issue is that you're using the <=> operator to compare non-numeric values. Try using cmp instead. Test program to illustrate:

use strict; my @dirs = (qw/11-08-2004 11-10-2004 11-07-2004 11-09-2004/); print "Using <=>:\n", join("\n", sort {$b <=> $a} @dirs), "\n\n"; print "Using cmp:\n", join("\n", sort {$b cmp $a} @dirs), "\n";
produces:
Using <=>: 11-09-2004 11-07-2004 11-10-2004 11-08-2004 Using cmp: 11-10-2004 11-09-2004 11-08-2004 11-07-2004

Your directories will lexically sort as is, but they are not numbers since they have dashes.

Replies are listed 'Best First'.
Re^2: Removing youngest directory
by tc1364 (Beadle) on Nov 09, 2004 at 21:11 UTC
    Thank you... the cmp is much better. As far as the quotes, I will need to remember this. the reason why i have been doing this is because this was the way i was taught.