Skip to content

Instantly share code, notes, and snippets.

@ILPlais
Last active July 28, 2024 16:54
Show Gist options
  • Select an option

  • Save ILPlais/6d7e7fc3e83a082295bd82dcc1b46a9f to your computer and use it in GitHub Desktop.

Select an option

Save ILPlais/6d7e7fc3e83a082295bd82dcc1b46a9f to your computer and use it in GitHub Desktop.
Display the number of files by type in the current directory and it subdirectories
#!/bin/bash
find . -type f -exec file --mime-type --brief {} \; | sort | uniq --count | sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment