Question

I want to list all of the applications and versions installed on my mac. Stuff like perl, php, etc., not the stuff you see in the Applications directory... Is there a unix command for that?

Was it helpful?

Solution

Not exactly a unix command but:

system_profiler -detailLevel full > myreport.txt might be a good start.

There's an option to only list software (as there is an option to ouput xml) (read the manpage for the precise syntax). If you're using macports you could just run port installed.

OTHER TIPS

pkgutil --packages or cat /Library/Receipts/InstallHistory.plist

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top