Last active
March 29, 2022 21:58
-
-
Save mak3r/13f777f6f39f1ebe55d5542b0b2e5c19 to your computer and use it in GitHub Desktop.
List any brew installed software that is still using x86 architecture
This file contains hidden or 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/bash | |
for i in $(brew list --formula); do which $i | xargs file | grep x86 ; done | |
for i in $(brew list --cask); do which $i | xargs file | grep x86 ; done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment