How do I look recursively for all the files containing a certain string?
December 4, 2010 in Recipes, Shell
To find all the occurrences of the string tabular in all the files hosted in the current directory use the command: grep -nir “tabular” * where n prints the line
…read more

Recent Comments