Skip to content

Instantly share code, notes, and snippets.

@blacklee
Created September 10, 2013 05:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blacklee/6505379 to your computer and use it in GitHub Desktop.
Save blacklee/6505379 to your computer and use it in GitHub Desktop.
count file count in directory
# Files
find . -type f | wc -l
# Directories
find . -type d | wc -l
# Block special
find . -type b | wc -l
# Character special
find . -type c | wc -l
# named pipe
find . -type p | wc -l
# symlink
find . -type l | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment