1.

Write A Sed Command To Print The Lines That Do Not Contain The Word "run"?

Answer»

<P>SED -N '/run/!p' &LT; FILENAME 

sed -n '/run/!p' < filename 



Discussion

No Comment Found