Skip to content

Instantly share code, notes, and snippets.

@mboyar
Created January 13, 2021 09:15
Show Gist options
  • Save mboyar/9e49f734ac960fac631ce47107b92513 to your computer and use it in GitHub Desktop.
Save mboyar/9e49f734ac960fac631ce47107b92513 to your computer and use it in GitHub Desktop.
find mingw cc1.exe call
for i in $(find . * -type f -executable); do line=$(strings $i | grep cc1.exe); [[ ! -z $line ]] && printf "$i: " && echo $line && echo "/////"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment