I am looking for a way to find all "info.plist"-files that contain "iphonesimulator" in my directory and all subdirectories.
I know that I can find all "iphonesimulator" via:
grep -ri "iphonesimulator" .
But that is not everything that I want. Is there a way to also filter for files? I tried with -f but that does not work.