Difference between revisions of "Grep"

From Linuxintro
imported>ThorstenStaerk
(New page: Show all lines that do '''not''' contain blabla grep -v blabla filename.txt)
 
imported>ThorstenStaerk
Line 1: Line 1:
 
Show all lines that do '''not''' contain blabla
 
Show all lines that do '''not''' contain blabla
 
  grep -v blabla filename.txt
 
  grep -v blabla filename.txt
 +
 +
= See also =
 +
* [[regex]]

Revision as of 08:50, 12 May 2009

Show all lines that do not contain blabla

grep -v blabla filename.txt

See also