>
> Define "lots of files" ? What does ls | wc -l say ?
>
Number of files + directories:
# find . | wc -l
2651882
Number of files:
# find . -type f | wc -l
1057105
Number of directories:
# find . -type d | wc -l
1594777
-- Saurabh.