Grep: RRTFM
If you've been a Linix/UNIX user for a long time you surely know what RTFM means (Read The *bleep* Manual). I'd like to offer up a new, related acronym, RRTFM, for Re-Read The *bleep* Manual.
My first exposure to *NIX was decades ago and just recently somebody pointed out some new options to grep that I've found very useful since then (more about those below). Now, if I'd re-read the man page during the last few years these wouldn't have been so new to me and the richness that it's brought to my life would have been extended by years.
Specifically, the new grep options that I've found to be quite useful are:
- -P or --perl-regexp makes grep interpret the pattern you pass as a perl compatible regular expression (PCRE). PCREs are often much more convenient, and often more powerful, than grep regular expressions.
-
--color causes the matched text to be colorized on output.
This is particularily useful when you're grepping files with long lines,
it makes the match stand out.
Note: Normally grep doesn't colorize when its output is going to a pipe, so if you're piping the output into more or less you want to do --color=always to get the colorization. - -o or --only-matching causes the matched text and only the matched text to be output, all other text in the line is not displayed.
- -r, -R or --recursive causes directories to be recursed and the files within them to be searched. By itself this turns out not to be as useful as you'd like, you probabaly need to use the --include and --exclude options to specify the files to be searched.
We all know that the rate of change is rapid, and that goes for the old standbys that we use everyday, so it pays to re-read the man/info pages now and then to check for new and useful features. If you don't like that option, then talk to new users. The person that pointed this out to me is fairly new to Linux and so their first reading of the manual was much more recent than mine.
Mitch Frazier is an Associate Editor for Linux Journal.
Trending Topics
| June 2012 Issue of Linux Journal: Cool Projects | Jun 01, 2012 |
| Calculating Day of the Week | May 30, 2012 |
| Hack and / - Password Cracking with GPUs, Part II: Get Cracking | May 29, 2012 |
| Networking Poll | May 29, 2012 |
| OpenLDAP Everywhere Reloaded, Part I | May 23, 2012 |
| Chemistry the Gromacs Way | May 21, 2012 |
- June 2012 Issue of Linux Journal: Cool Projects
- Hack and / - Password Cracking with GPUs, Part II: Get Cracking
- Networking Poll
- Readers' Choice Awards 2011
- RSS Feeds
- Validate an E-Mail Address with PHP, the Right Way
- Hack and / - Temper Temper
- OpenLDAP Everywhere Reloaded, Part I
- Calculating Day of the Week
- Why Hulu Plus Sucks, and Why You Should Use It Anyway
- context switch takes 5ms
3 hours 13 min ago - Thank you for the guidelines
4 hours 31 min ago - Intense debate is more good
5 hours 14 min ago - Do you know that graco
7 hours 24 min ago - Good Post
21 hours 46 min ago - Use Linux friendly browser ;)
23 hours 29 min ago - free copy of journal
1 day 48 min ago - Good One..
1 day 9 hours ago - Nice One...
1 day 10 hours ago - science gnu
1 day 18 hours ago





Comments
How needs colors on greps output
Monochrome displays are fine with Linux, if you want to look for colors, use vista :-)