We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af7e1a9 commit 4207cebCopy full SHA for 4207ceb
README.md
@@ -638,6 +638,9 @@ They take in input (<) and output for a given file (>) using stdin and stdout.
638
</summary><br><b>
639
640
- sed: a stream editor. Can be used for various purposes like replacing a word in a file: `sed -i s/salad/burger/g`
641
+ - grep: a search tool. Used to search, count or match a text in a file:
642
+ - searching for any line that contains a word in a file: `grep 'word' file.md`
643
+ - or displaying the total number of times a string appears in a file: `grep -c 'This is a string' file.md`
644
</b></details>
645
646
<details>
0 commit comments