Skip to content

Instantly share code, notes, and snippets.

@paultreny
Forked from jbafford/gist:d91ac15cf79a22e70f65
Last active August 29, 2015 14:06
Show Gist options
  • Save paultreny/fd9ff1cf8115de713c1f to your computer and use it in GitHub Desktop.
Save paultreny/fd9ff1cf8115de713c1f to your computer and use it in GitHub Desktop.
find /Applications ~/Applications -maxdepth 3 -name "*.app" | while read a ; do echo; echo -n "$a ___ "; codesign -vd "${a}" 2>&1 | awk '/version/ {print $3}'; done | awk -F'___' '{print $2 " " $1}' | sort -u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment