back to using grep fixed-string matching when removing key lines
authorJameson Rollins <jrollins@finestructure.net>
Sun, 24 Oct 2010 15:51:39 +0000 (11:51 -0400)
committerJameson Rollins <jrollins@finestructure.net>
Sun, 24 Oct 2010 15:51:39 +0000 (11:51 -0400)
commit46f5d82b83ca38aeffcc660d8b5d621bf19f3f4f
tree67160d8a74a5e3b344af5346270f1e99afa651b6
parentaf9ff0feedd40dadc8df15bf9f5392a599e5279e
back to using grep fixed-string matching when removing key lines

This method uses grep -F to find the full line to match, and then
second call to grep -v -F to actually remove the line.  For
known_hosts, we use two piped grep -F calls.  No rexexp are used, and
only one extra call to grep is required for known_hosts line removal.

There is still an issue here about sub-string matches, but there is at
least no regression over early versions.
src/share/common