Fixed typos, titles and spacing

This commit is contained in:
Michele Cereda
2022-04-17 23:11:55 +02:00
parent 8a51f25964
commit af19baf99f
8 changed files with 16 additions and 16 deletions

View File

@@ -8,7 +8,7 @@ grep 'pattern' path/to/search
# recursive search
grep -R 'pattern' path/to/search/recursively
grep -R --exclude-dir excluded/dir 'pattern' path/to/search/recursively # gnu grep >= 2.5.2
grep -R --exclude-dir excluded/dir 'pattern' path/to/search/recursively # gnu grep >= 2.5.2
# show line numbers
grep -n 'pattern' path/to/search