a simple question about grep

Star nhstar at gmail.com
Thu Sep 6 16:46:46 EDT 2007


> I want to pick up all lines starting with "*" but no "INDICATOR"
> followed.

I'd double-grep it, but i'm not infront of a *nix box to check

grep -i "*" | grep -v "*INDICATOR" filename

or something to that effect.

-- 
~ *


More information about the gnhlug-discuss mailing list