Dec 252009
How to count the number of files in a directory?
Answer:
If you are only interested in know the number of files in a directory, try the command:
find /home/john -type f | wc -l
Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.
How to count the number of files in a directory?
Answer:
If you are only interested in know the number of files in a directory, try the command:
find /home/john -type f | wc -l