Skip to content

Instantly share code, notes, and snippets.

@Frizlab
Created July 19, 2020 14:31
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 Frizlab/67ded9b025e3c338aa42c4fad7331373 to your computer and use it in GitHub Desktop.
Save Frizlab/67ded9b025e3c338aa42c4fad7331373 to your computer and use it in GitHub Desktop.
Find electron Apps on your system
# Find electron Apps on your system
mdfind 'kMDItemContentType = "com.apple.application-bundle"' | while read a; do has=`ls "$a"/Contents/Frameworks/Electron\ Framework.framework >/dev/null 2>&1 && echo true || echo false`; test "$has" = true && echo $a; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment