1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-12 20:24:21 +02:00

add links for 'grep' (#5808)

This commit is contained in:
Ruslan Semagin
2024-06-04 11:39:59 +03:00
committed by Kamran Ahmed
parent 3c3b0c02a8
commit 1bc3464102

View File

@@ -11,3 +11,12 @@ grep "pattern" fileName
```
This command will search for the specified pattern within the file and prints the line to the terminal.
There is also an alternative to `grep` - `ripgrep`.
`ripgrep` is an extremely fast text processor that supports all the features of `grep` and extends it.
Visit the following resources to learn more:
- [bgsu.edu: Advanced Grep Topics](https://caspar.bgsu.edu/~courses/Stats/Labs/Handouts/grepadvanced.htm)
- [Ripgrep: Github Repository](https://github.com/BurntSushi/ripgrep)