Skip to content

Instantly share code, notes, and snippets.

@kevincolten
Created April 21, 2018 22:30
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 kevincolten/e3a443fabff3cd851580cba39a0e441d to your computer and use it in GitHub Desktop.
Save kevincolten/e3a443fabff3cd851580cba39a0e441d to your computer and use it in GitHub Desktop.
find unused images
find ./_images/* |
awk -F/ '{print $NF}' |
sort -u > ./tmp/images.txt &&
grep -IhFriof ./tmp/images.txt --exclude-dir=".git" . |
awk '{print $0}' | sort -u | comm -23 ./tmp/images.txt -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment