diff options
author | Jameson Graef Rollins <jrollins@phys.columbia.edu> | 2008-07-01 00:45:36 -0400 |
---|---|---|
committer | Jameson Graef Rollins <jrollins@phys.columbia.edu> | 2008-07-01 00:45:36 -0400 |
commit | 56e8fa26a4ce594f2c5c71b600df11fc9f255956 (patch) | |
tree | 664e1ace928f3594548e55a408ceb3e0cd1d6472 /src | |
parent | 5470209cd829eda1e75719e93fe6c69cf2c1a61d (diff) |
A bunch of work on man pages to shore up interface and behavior before
developer release. Still do a bit of work to make sure actual
commands meet the outlined behaviors.
Small tweak to remove_line function to make sure it doesn't
accidentally have a regexp match.
Diffstat (limited to 'src')
-rw-r--r-- | src/common | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -85,7 +85,7 @@ remove_line() { # if the line is there are removed, return 0 if [ "$file" -a "$string" ] ; then - grep -v "$string" "$file" | sponge "$file" + grep -v -F "$string" "$file" | sponge "$file" return 0 # otherwise return 1 else |