- or download this
# returns the $limit largest files from the flist file,
# full path to file in $name
...
# and the $limit largest files
return ($nlines, $total, @lines);
}
- or download this
find /tgt -type f -name input | xargs wc -l
197898 .../input
...
179495 .../input
218041 .../input
1434957 total
- or download this
51 opt/src/t.tar 100444 1247464676 290119680 283320 NA 1 0xbe2d 0x4000
+0006
- or download this
...
while (<$fh>) {
...
push @lines, $2 . '/' . $1;
}
...