Skip to content

Instantly share code, notes, and snippets.

@segiddins
Created August 4, 2014 21:02
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 segiddins/8ba2e42a428014d83e61 to your computer and use it in GitHub Desktop.
Save segiddins/8ba2e42a428014d83e61 to your computer and use it in GitHub Desktop.
Check Codesign Versions
find /Applications /Applications/Utilities -maxdepth 1 -name "*.app" | while read a ; do codesign -vd "${a}" 2>&1 | awk '/version/ {print $3}' ; done | sort | uniq -c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment