How do I go about listing all of the installed packages and versions on mac os x?

StackOverflow https://stackoverflow.com/questions/2518610

  •  22-09-2019
  •  | 
  •  

문제

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?

도움이 되었습니까?

해결책

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.

다른 팁

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top