/ Published in: Bash
List the current version and installation date of every application on a OS X system, using of Spotlight.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#!/bin/bash mdfind 'kMDItemKind == "Application"' | perl -ne 'chomp; print "\"$_\"\n" ' | xargs mdls -name kMDItemFSContentChangeDate -name kMDItemVersion -name k@MDItemDisplayName -name kMDItemPath | perl -pe 's/^\/.+/"-" x 20/e'
URL: http://harnly.net/2007/blog/geek/macosx/list-all-application-versions/