in reply to uid file finder
My interperter is being updated, so here's the start of a solution for 1-pass. A structure is built that just has to be dumped to disk however you want.
Untested, of course.
use File::Find; sub wanted { $a=$File::Find::name; return if -l $a; # Necessary? $o=(stat($a))[4]; push( @{$catalog{$o}}, $a); } find(\&wanted, "/home/ul");
|
|---|