8 lines
117 B
Plaintext
8 lines
117 B
Plaintext
|
use File::Find;
|
||
|
use strict;
|
||
|
|
||
|
find( \&printer, @ARGV );
|
||
|
|
||
|
sub printer {
|
||
|
printf("%s %d\n", $File::Find::name, -s);
|
||
|
}
|