September 26, 2010
Useful Linux Commands
Set of frequently needed but often forgotten commands.
Grep Text within Folder
find . -name *.c -print0 | xargs -0 grep -n texttosearch
Set of frequently needed but often forgotten commands.
find . -name *.c -print0 | xargs -0 grep -n texttosearch