How to count the files in a directory using Bash Command

You can count the number of files within a directory using the combination of two bash commands - find and wc.

Let's take a look at an example.

$ find ~/Desktop/ -type f | wc -l

13

As you can see, the number of files on my desktop directory has been counted as 13.

Find the Count of files in a directory using bash command

Comments & Discussion

Facing issues? Have questions? Post them here! We're happy to help!