Skip to content

Instantly share code, notes, and snippets.

@mak3r
Last active March 29, 2022 21:58
Show Gist options
  • Save mak3r/13f777f6f39f1ebe55d5542b0b2e5c19 to your computer and use it in GitHub Desktop.
Save mak3r/13f777f6f39f1ebe55d5542b0b2e5c19 to your computer and use it in GitHub Desktop.
List any brew installed software that is still using x86 architecture
#!/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