Hellos,
How to count number of files recursively?
find . -type f | wc -l
How to count number of lines in files recursively?
wc -l `find -name '*.php' -o -name '*.html' -o -name '*.xls' -type f`;
Cheers!!!
How to count number of files recursively?
find . -type f | wc -l
How to count number of lines in files recursively?
wc -l `find -name '*.php' -o -name '*.html' -o -name '*.xls' -type f`;
Cheers!!!
No comments:
Post a Comment