in reply to Re: Re: how to get total numbers of files in a directory?
in thread how to get total numbers of files in a directory?

This would miss hidden files. Maybe ls -lad *.txt | grep -v ^d | wc -l would be a better solution.

/dev/null