It appears that you want the files in a sub-directory listed before any files in a sub-sub-directory. That's not a standard sort at all. I think that the algorithm should be, conceptually:
- If the longest common initial sub-path between two filenames is
X, then the names are X/A and X/B.
- If both
A and B contain one or more slashes, do a straight string comparison (of A and B).
- Else if neither
A nor B contains a slash, do a straight string comparison (of A and B).
- Else if
A contains a slash and B does not, sort B before A.
- Else (
B contains a slash and A does not, so) sort A before B.
In the sample data:
- F1 =
./lib/app/b/file
- F2 =
./lib/app/config.json
- F3 =
./lib/app/d/file
- F4 =
./lib/app/b/a/file
- F5 =
./lib/app/b/other
Comparing:
Names X A B Rule Result
F1, F2 ./lib/app/ b/file config.json 4 F2 < F1
F1, F3 ./lib/app/ b/file d/file 2 F1 < F3
F1, F4 ./lib/app/b/ file a/file 5 F1 < F4
F1, F5 ./lib/app/b file other 3 F1 < F5
F2, F3 ./lib/app/ config.json d/file 5 F2 < F3
F2, F4 ./lib/app/ config.json b/a/file 5 F2 < F4
F2, F5 ./lib/app/ config.json b/other 5 F2 < F5
F3, F4 ./lib/app/ d/file b/a/file 2 F4 < F3
F3, F5 ./lib/app/ d/file b/other 2 F5 < F3
F4, F5 ./lib/app/b a/file other 3 F5 < F3
Coding that in Perl:
#!/usr/bin/env perl
use strict;
use warnings;
my @files;
while (<>)
{
chomp;
push @files, $_;
}
sub pathsorter
{
my(@abits) = split /\//, $a;
my(@bbits) = split /\//, $b;
my $na = scalar(@abits);
my $nb = scalar(@bbits);
my $nbits = (($na < $nb) ? $na : $nb) - 1;
my $i;
for ($i = 0; $i < $nbits; $i++)
{
last if ($abits[$i] ne $bbits[$i]);
}
# abits[0..$i] == bbits[0..$i] == X
return $a cmp $b if ($i < $nbits);
return $a cmp $b if ($na == $nb && $i == $nbits);
return -1 if ($na < $nb);
return +1 if ($na > $nb);
return 0;
}
print "$_\n" foreach (sort pathsorter @files);
Input:
./lib/app/b/file
./lib/app/config.json
./lib/base/basename
./lib/app/d/file
./lib/app/b/a/file
./lib/app/b/other
./lib/app/animosity
./lib/base/basename
Output:
./lib/app/animosity
./lib/app/config.json
./lib/app/b/file
./lib/app/b/other
./lib/app/b/a/file
./lib/app/d/file
./lib/base/basename
./lib/base/basename
ls -tbut with directories sorted alphabetically – Industrial Nov 21 '12 at 15:29tcshetc), the backslash at the end of the line is unnecessary. Not actually harmful, just unnecessary. – Jonathan Leffler Nov 21 '12 at 17:52