How to make tail display only the lines that have a specific text?

22,840

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.

Share:
22,840
blagus
Author by

blagus

Updated on June 16, 2020

Comments

  • blagus
    blagus about 4 years

    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.