Remove r flag from grep: that's for recursion as far as I can tell, not required when grepping a file.

This commit is contained in:
Ashley Harvey 2020-02-23 15:22:19 -08:00
parent 6acd4c52e3
commit 7c0e58b908

View File

@ -332,7 +332,7 @@ cat apps/settings.py | less
**STOP CMD/CTRL + F IN A FOLDER** :-1:
```shell
grep -ir "Query" file.txt
grep -i "Query" file.txt
```
![grep](./grep.jpg)