Help for this page

Select Code to Download


  1. or download this
    find -name '*.p[lm]' -print0 | xargs -r0 cat | wc -l
    
  2. or download this
    find -name '*.p[lm]' -print0 \
    | perl -00000pe'++$a;END{print STDERR "Files: ",$a||0,", lines: "}' \
    | xargs -r0 cat | wc -l