Created
August 26, 2019 06:08
-
-
Save rwoeber/65dbe0e7c1dfa5cab4048164826b5953 to your computer and use it in GitHub Desktop.
List All Apps Downloaded from the Mac App Store via Command Line
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find /Applications -path '*Contents/_MASReceipt/receipt' -maxdepth 4 -print |\sed 's#.app/Contents/_MASReceipt/receipt#.app#g; s#/Applications/##' | |
# even more detail: | |
system_profiler -xml SPApplicationsDataType |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment