From: Chris Koeritz Date: Sun, 14 Apr 2013 19:46:17 +0000 (-0400) Subject: nice mod to sort the files / dirs by name before dumping them. X-Git-Tag: 2.140.90~1011^2~1 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;ds=inline;h=57cd4d46b2cc7cfed0723e0e1920b0a5f9432937;p=feisty_meow.git nice mod to sort the files / dirs by name before dumping them. --- diff --git a/scripts/files/filedump.pl b/scripts/files/filedump.pl index 858fdd80..3fa5b0f3 100644 --- a/scripts/files/filedump.pl +++ b/scripts/files/filedump.pl @@ -27,7 +27,7 @@ if ($#ARGV < 0) { # iterate over the list of files and dump them to standard output. -foreach $filename (&glob_list(@ARGV)) { +foreach $filename (sort &glob_list(@ARGV)) { &do_dump($filename); }