Last active
February 26, 2021 22:36
-
-
Save 0bmxa/16afcb0bb8ccab07885bf1f340ea0c50 to your computer and use it in GitHub Desktop.
How many Chromes do *You* have? (On your macOS)
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
#!/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