> what command do I use to substitute all occurences of a certain string (say,
> "NOT NULL") with another arbitrary string, (e.g. "")?  I've tried grep and
> tr, but can't figure it out.

Give this one a try:

cat infile | sed -s 's/NOT NULL//g'

Matt



_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to