Skip to content

Instantly share code, notes, and snippets.

@jms1989
Created July 13, 2019 23:14
Show Gist options
  • Save jms1989/f313977428280ce3ce66dc9285e016ef to your computer and use it in GitHub Desktop.
Save jms1989/f313977428280ce3ce66dc9285e016ef to your computer and use it in GitHub Desktop.
Count images in current folder
find . -type f | sed -e 's/.*\.//' | sort | uniq -c | sort -n | grep -Ei '(tiff|bmp|jpeg|jpg|JPG|png|gif)$'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment