30

How to make tail display only the lines that have a specific text? If the search criteria can be a regular expression, it would be even better. I need something like:

tail -f mylogfile.log showOnlyLinesWith "error: "

I am running Darwin (Mac OS X) and I'm totally beginner in the bash.

Nilanka Manoj
  • 3,527
  • 4
  • 17
  • 48
blagus
  • 2,086
  • 4
  • 19
  • 22

1 Answers1

57

You can do

tail -f mylogfile.log | grep "error: "

This works with regular expressions too. In general, you can take the output of any command, add | to "pipe" it to grep, and let grep filter out the lines that don't match a certain pattern.

arghbleargh
  • 3,090
  • 21
  • 13