User Tools

Site Tools

tools:grep

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
tools:grep [2024/09/28 02:55] – [grep] Humphrey Boa-Garttools:grep [2024/09/28 03:07] (current) Humphrey Boa-Gart
Line 8: Line 8:
 ===== Useful Commands ===== ===== Useful Commands =====
  
-Using grep may seem obtuse to new users at first. However, once you know how to structure your commands, it is the absolute fastest way to do many common searches:+Using ''grep'' may seem obtuse to new users at first. However, once you know how to structure your commands, it is the absolute fastest way to do many common searches:
  
 ==== Built-in Documentation ==== ==== Built-in Documentation ====
Line 23: Line 23:
 ==== Search Files in Current Directory ==== ==== Search Files in Current Directory ====
  
-You can also use grep to search inside all the files within a folder, and not just one. Just replace the filename with an asterisk. To search the PWD for all files containing //INSERTSTRING//, format your command as so:+You can also use ''grep'' to search inside all the files within a folder, and not just one. Just replace the filename with an asterisk. To search the pwd for all files containing //INSERTSTRING//, format your command as so:
  
   $ grep “INSERTSTRING” *   $ grep “INSERTSTRING” *
Line 35: Line 35:
   $ grep “INSERT*” *.txt   $ grep “INSERT*” *.txt
  
-The ''-R'' flag lets you search child directories. So to search your PWD **and** all child directories recursively for all files containing //INSERTSTRING//:+The ''-R'' flag lets you search child directories. So to search your pwd **and** all child directories recursively for all files containing //INSERTSTRING//:
  
   $ grep -R "INSERTSTRING" *   $ grep -R "INSERTSTRING" *
  
-You can combine flags as well. To search your PWD and all child directories recursively for all //.txt// files containing //INSERTSTRING//, and to make grep tell you the line number that the string is found on, combine the ''-R'' and ''-n'' flags like this:+You can combine flags as well. To search your pwd and all child directories recursively for all //.txt// files containing //INSERTSTRING//, and to make grep tell you the line number that the string is found on, combine the ''-R'' and ''-n'' flags like this:
  
   $ grep -Rn "INSERTSTRING" *.txt   $ grep -Rn "INSERTSTRING" *.txt
Line 55: Line 55:
  
  
 +==== More Command Flags ====
 +
 +There are more flags you can combine with these basic ''grep'' commands to fine-tune your search. Play around with them to see how they affect output!
 +
 +  * ''-i'' - Searches made with ''grep'' are case-sensitive. Use this flag to search for both uppercase and lowercase versions of the same string.
 +  * ''-l'' - Print only the filename(s) of search results. Incredibly useful when using ''-R'' on large directory trees.
 +  * ''-w'' - Match only whole words.
 +  * ''-x'' - Match only whole lines.
 +  * ''-v'' - Inverted search. Returns only non-matching lines.
 +  * ''-s'' - Suppress error messages. Useful in bash scripts.
 ===== Variations ===== ===== Variations =====
  
tools/grep.1727492134.txt.gz · Last modified: 2024/09/28 02:55 by Humphrey Boa-Gart

Find this page online at: https://bestpoint.institute/tools/grep