DEV Community

Discussion on: 10 simple Linux tips which save 50% of my time in the command line

Collapse
 
alvarezgarcia profile image
Alvarez García

Hey nice list.. thanks for sharing it and encourage programmers to use terminal.
I want to share one that I use commonly:

$ grep -nHri 'string'

It searches case insensitive recursively on current dir and shows number of line and file of each occurence.