Skip to content

Instantly share code, notes, and snippets.

@CodeByKwakes
Last active March 26, 2023 12:31
Show Gist options
  • Save CodeByKwakes/b3a7e30394271a2d339e17d3726a018a to your computer and use it in GitHub Desktop.
Save CodeByKwakes/b3a7e30394271a2d339e17d3726a018a to your computer and use it in GitHub Desktop.
Terminal Commands #scripts
# List All Apps Using the Terminal
ls -la /Applications/ > /Users/kwakes/Workspace/___Space___/InstalledAppsTerminal.txt
# ls -la /Applications/ > /Users/[USERNAME]/InstalledApps/InstalledAppsTerminal.txt
# List All APP Files Everywhere Using Terminal
sudo find / -iname '*.app' > /Users/kwakes/Workspace/___Space___/InstalledAppsOnSystemTerminal.txt
# sudo find / -iname '*.app' > /Users/[USERNAME]/InstalledApps/InstalledAppsOnSystemTerminal.txt
# List All Mac App Store Apps Using Terminal
find /Applications -path '*Contents/_MASReceipt/receipt' -maxdepth 4 -print |
ed 's#.app/Contents/_MASReceipt/receipt#.app#g; s#/Applications/##'
# List All Installed Applications on a Mac with a Terminal Command
sudo find / -iname *.app
find / -iname *.app > /Users/kwakes/Workspace/___Space___/find_installed_apps.txt
# https://zaiste.net/posts/tree-ignore-directories-patterns/
# https://lifehacker.com/list-all-installed-applications-on-a-mac-with-a-termina-1708525931
# https://sportsclinictampico.com/device/how-to-list-all-applications-on-a-mac/
# https://www.howtogeek.com/409377/how-to-list-all-applications-on-a-mac/
# https://www.makeuseof.com/tag/list-installed-apps-mac/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment