Skip to content

Instantly share code, notes, and snippets.

@gboudreau
Created October 4, 2011 13:09
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 gboudreau/1261604 to your computer and use it in GitHub Desktop.
Save gboudreau/1261604 to your computer and use it in GitHub Desktop.
Find applications that use an old version of the Growl Framework, and thus won't work with Growl 1.3+
echo 'echo $1 | awk -F"/" "{print \$3}" ; plutil -convert xml1 -o - "$1/Versions/Current/Resources/Info.plist" | grep -A 1 CFBundleShortVersionString | tail -1 | awk -F">" "{print \$2}" | awk -F"<" "{print \$1}"' > /tmp/go.sh
find /Applications -name Growl.framework -exec sh /tmp/go.sh "{}" \;
@gboudreau
Copy link
Author

Or just use Growl Version Detective! :)
https://twitter.com/#!/growlmac/status/121210993589239809

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment