in reply to making smaller perlapp exe's

my @file = map /\A\+\+\+ (.*)\z/g, <>; my @size = map -s, @file; print map "$_\n", @file[sort { $size[$b] <=> $size[$a] } 0 .. $#size ] +;
SCNR. :)

Makeshifts last the longest.