From 1bc3464102ff03a29dc93236299c416ad2043600 Mon Sep 17 00:00:00 2001 From: Ruslan Semagin <53819609+pixel365@users.noreply.github.com> Date: Tue, 4 Jun 2024 11:39:59 +0300 Subject: [PATCH] add links for 'grep' (#5808) --- .../linux/content/104-text-processing/116-grep.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/linux/content/104-text-processing/116-grep.md b/src/data/roadmaps/linux/content/104-text-processing/116-grep.md index 9631c7a2c..af88dcf01 100644 --- a/src/data/roadmaps/linux/content/104-text-processing/116-grep.md +++ b/src/data/roadmaps/linux/content/104-text-processing/116-grep.md @@ -10,4 +10,13 @@ Here is an example of a simple GREP command: grep "pattern" fileName ``` -This command will search for the specified pattern within the file and prints the line to the terminal. \ No newline at end of file +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)