Created
January 13, 2021 09:15
-
-
Save mboyar/9e49f734ac960fac631ce47107b92513 to your computer and use it in GitHub Desktop.
find mingw cc1.exe call
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
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