Grep

From LinuxIntro

Jump to: navigation, search
  • Show all lines that do not contain blabla
grep -v blabla filename.txt
  • Match any character

With a dot (.) you can match any character

grep -E "L.nux"

Matches Linux, Lanux L nux, but not Lnux

  • Match all characters

With a .* you can match an arbitrary count of any character

grep -E "L.*nux"

Matches Linux, Liinux, Lanux, L nux and Lnux

  • Match any character but blank
grep -E "L[^ ]nux"

Matches Linux, Lanux, but not Lnux and not L nux

  • Match any line starting with a character
grep -E "U"

Matches all lines starting with U

  • Show all files containing content
grep -ir "content" *

[edit] Usecases

[edit] Show all running processes

ps auxf | grep -E "^[^ ]+ +[^ ]+ +[^ ]+ +[^ ]+ +[^ ]+ +[^ ]+ +[^ ]+ +R"

[edit] See also

Personal tools