Skip to content

Instantly share code, notes, and snippets.

@0bmxa
Last active February 26, 2021 22:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 0bmxa/16afcb0bb8ccab07885bf1f340ea0c50 to your computer and use it in GitHub Desktop.
Save 0bmxa/16afcb0bb8ccab07885bf1f340ea0c50 to your computer and use it in GitHub Desktop.
How many Chromes do *You* have? (On your macOS)
#!/bin/sh
printf 'All these apps contain Chromium or its frameworks:\n'
find -E /Applications/*.app -type d -iregex ".*(electron|chrom).*(framework|app)$" | cut -d/ -f3 | sort | uniq
printf "\n\nOh dear, that's a lot of Chromes...\nYou really hate your RAM, don't you?\n\n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment