Linux CheatSheet
Count number of files in a directory including subdirectories recursively
# Current directory
find . -type f | wc -l
# Other directory
find ~/Downloads -type f | wc -l
# Current directory
find . -type f | wc -l
# Other directory
find ~/Downloads -type f | wc -l