Commit 14f3dbb7 authored by neil's avatar neil
Browse files

minor, fix sed_i

parent 0103f59f
...@@ -168,10 +168,10 @@ _sed_i() { ...@@ -168,10 +168,10 @@ _sed_i() {
_err "Usage:_sed_i options filename" _err "Usage:_sed_i options filename"
return 1 return 1
fi fi
_debug2 options "$options"
if sed -h 2>&1 | grep "\-i[SUFFIX]" ; then if sed -h 2>&1 | grep "\-i\[SUFFIX]" >/dev/null 2>&1; then
_debug "Using sed -i" _debug "Using sed -i"
sed -i "" sed -i "$options" "$filename"
else else
_debug "No -i support in sed" _debug "No -i support in sed"
text="$(cat $filename)" text="$(cat $filename)"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment