Last active
December 8, 2022 07:21
-
-
Save ppdouble/779c8a75b190b96643c371d3a08d588e to your computer and use it in GitHub Desktop.
search files which contains a specific string
This file contains hidden or 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
grep -nr --include '*.cpp' "Aggregated" ./source | |
find ./source -type f -print0 | xargs -0 grep -rHinbo "AggregatedDiscoveryService.StreamAggregatedResources" | |
find ./source -type f -print0 | xargs -0 grep -rHino "AggregatedDiscoveryService.StreamAggregatedResources" | |
find ./source -type f -print0 | xargs -0 grep -n "AggregatedDiscoveryService.StreamAggregatedResources" | |
find ./source -type f -print0 | xargs -0 grep "ads.pb.h" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment