-2

I like tail -f but I like to omit lines that have a certain string in them. Is this possible? I have seen example to include certain string but not how to omit.

1 Answers1

6
tail -f /path/to/file | grep -v CertainText
melsayed
  • 1,122
  • 1
  • 6
  • 12