Command to find debug keyword in all C++ files available in various directories / sub-directories

by Geethalakshmi 2013-01-25 17:32:09

Command to find out debug keyword in all the C++ files available in various directories and sub-directories



$find . -name \*.cpp -exec grep -q "debug" '{}' \; -print
1304
like
0
dislike
0
mail
flag

You must LOGIN to add comments