Skip to content

Instantly share code, notes, and snippets.

@mrala
Created January 12, 2015 23:15
Show Gist options
  • Save mrala/f77f6ef3c19119eea26d to your computer and use it in GitHub Desktop.
Save mrala/f77f6ef3c19119eea26d to your computer and use it in GitHub Desktop.
version=$(/usr/bin/defaults read "/Applications/Microsoft Office 2011/Microsoft Word.app/Contents/Info" CFBundleShortVersionString)
if [ ${version:-0} \< 14.4.6 ]; then
echo "installed version is" $version", need to install"
exit 0
else
echo "installed version is" $version", do not install"
exit 1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment