I'm working with some output that is more verbose than I'd like, so I was trying to use grep to whittle it down. The output looks something like this…
path/to/file1:
No Problems Found
path/to/file3:
Problem Found
I'd like to filter out all the output concerning files without problems. I'm able to remove one line of it by piping the output through grep -v "No Problems Found"
. I thought I'd then be able to use -B and -A along the lines of grep -B 1 -A 1 -v "No Problems Found"
but it turns out those don't invert when used in conjunction with -v.
I can modify the output pretty quickly in Vim, after I've exported the file, but I'd like to do it directly on the command line, if I can. Any ideas? Is this a better job for Awk or Sed?