0 Votes |
Versions of Adobe Apps Installed on macOS
Relevance
* Results in a "string"/number |

(name of it, strings "CFBundleShortVersionString" of dictionaries of files whose (name of it is "Info.plist") of folders of it ) of folders whose (name of it contains ".app") of folders whose (name of it contains "Adobe") of folder "/Applications/"
Property Details
3019419 | |
Versions of Adobe Apps Installed on macOS | |
macOS, adobe | |
Returns versions of Adobe applications installed on macOS. | |
rustymyers | |
rustymyers on 2/13/2017 6:51:53 PM | |
0 Downloads | |
![]() ![]() ![]() ![]() ![]() |
Sharing
Relevance Image Sharing: |
Social Media: |
Comments
![]() |
|
If you want to realllly want to get app versions in bash: find /Applications -iname *.app -maxdepth 2 -print0 | xargs -0 -I '{}' bash -c 'echo `basename {}` ; echo "version of folder \"{}\"" | /Library/BESAgent/BESAgent.app/Contents/MacOS/QnA | grep "^A: " | sed s/A/\ \ \ \ Version/g' | tee ~/Desktop/appVersions.txt |