Hello!
I recently published my book on GNU GREP and RIPGREP
Get the e-book using either of these sites:
You can also get the ebooks as part of Magical one-liners bundle using these links:
You can also get the ebooks as part of Awesome Regex bundle using these links:
Note Please use a valid e-mail and save the mail you receive, you'll get free updates for future versions.
Code snippets, example files, sample chapters, etc are available at https://github.com/learnbyexample/learn_gnugrep_ripgrep
This book covers features of GNU grep
and ripgrep
along with discussion on BRE/ERE/PCRE(2)/Rust regular expressions
. Examples are used extensively, please follow along by typing them out. Exercises are also included to test your understanding.
Some of you might be familiar with my Command Line Text Processing repo.
⚡ From finding text to search and replace, from sorting to beautifying text and more 🎨
Command Line Text Processing
Learn about various commands available for common and exotic text processing needs. Examples have been tested on GNU/Linux - there'd be syntax/feature variations with other distributions, consult their respective man
pages for details.
⚠️ ⚠️ I'm no longer actively working on this repo. Instead, I've been converting existing chapters into ebooks (see ebook section below for links), available under the same license. These ebooks are better formatted, updated for newer versions of the software, includes exercises, solutions, etc. Once all the chapters have been converted, I'll be archiving this repo.
Chapters
-
Cat, Less, Tail and Head
- cat, less, tail, head, Text Editors
- GNU grep
- GNU sed
- GNU awk
- Perl the swiss knife
- Ruby one liners
-
Sorting stuff
-
Restructure text
-
Whats the difference
-
File attributes
-
Miscellaneous
- cut, tr, basename, dirname, xargs, seq
…
This book is based on the grep
chapter - edited to add more descriptions, better examples, exercises, etc. Also, I took the plunge and checked out ripgrep
while working on this book. I'd assumed it would be similar to gnu grep
and I just need simple changes to present it in the book. Well, it turned out lot more work and I had to settle for not covering all the options and customizations. In hindsight, would've been better if I did a separate book. Speed wise, ripgrep
is very impressive and has plenty of additional nice features. For example: the multiline -U
and replace -r
options of ripgrep
are quite handy - you can use this instead of sed
for some cases with added advantage of speed, -F
option and better regex features.
Table of Contents
- Preface
- Introduction
- Frequently used options
- BRE/ERE Regular Expressions
- Context matching
- Recursive search
- Miscellaneous options
- Perl Compatible Regular Expressions
- Gotchas and Tricks
- ripgrep
- Further Reading
Hope you find the book useful. I would be grateful for your feedback, book review and suggestions.
Happy learning :)