Difference between revisions of "Grep"

From TBP Wiki
Jump to: navigation, search
(Using grep)
Line 3: Line 3:
 
=Using grep=
 
=Using grep=
 
<strong>Recursively search DIR for "STRING" (also ignores caps)</strong>
 
<strong>Recursively search DIR for "STRING" (also ignores caps)</strong>
     grep -ri "STRING" /DIR/
+
     grep -irl "STRING" /DIR/
  
 
<strong>Piping</strong>
 
<strong>Piping</strong>

Revision as of 11:32, 5 April 2019

grep searches the named input FILEs (or standard input if no files are named, or if a single hyphen-minus (-) is given as file name) for lines containing a match to the given PATTERN. By default, grep prints the matching lines. grep is a powerful tool.

Using grep

Recursively search DIR for "STRING" (also ignores caps)

    grep -irl "STRING" /DIR/

Piping

grep can also be piped from or to other outputs using the pipe "|"

   grep "STRING" /LOCATION/logfile.log |grep ANOTHERSTRING

Example usage:

   grep "13:00:" /var/log/messages |grep "September"
   tail -f /var/log/somefile.log |grep specificstring
   sudo cat /usr/local/apache/logs/error_log | grep -i "modsec" | awk '{print $10}' | sort | uniq -c | sort -n

Remove everything but grep'd

This will show only lines with "firstline" within file.txt.

   cat file.txt | grep '^firstline'