Skip to content

Instantly share code, notes, and snippets.

@lavoiesl
Last active November 13, 2016 15:21
Show Gist options
  • Save lavoiesl/11024316 to your computer and use it in GitHub Desktop.
Save lavoiesl/11024316 to your computer and use it in GitHub Desktop.
list file types
#!/bin/bash
#
# @link https://gist.github.com/lavoiesl/11024316
folder="${1:-.}"
find -E "$folder" -regex '.*/\.(git|svn)' -prune -o -type f -print \
| grep -oiE '\.[a-z0-9_]+$' \
| tr '[:upper:]' '[:lower:]' \
| sort \
| uniq -c \
| sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment