Skip to content

Instantly share code, notes, and snippets.

@ppdouble
Last active December 8, 2022 07:21
Show Gist options
  • Save ppdouble/779c8a75b190b96643c371d3a08d588e to your computer and use it in GitHub Desktop.
Save ppdouble/779c8a75b190b96643c371d3a08d588e to your computer and use it in GitHub Desktop.
search files which contains a specific string
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