fix compatible for sh. head -n -1 is not supported on pfsense.

This commit is contained in:
neil 2016-04-17 19:16:48 +08:00
parent cada9dc0a0
commit c5f2df5c93
1 changed files with 3 additions and 3 deletions

View File

@ -194,7 +194,7 @@ _getfile() {
_err "Can not find start line: $startline"
return 1
fi
i="$(_math $i + 1)"
_debug i $i
j="$(grep -n -- "$endline" $filename | cut -d : -f 1)"
@ -202,10 +202,10 @@ _getfile() {
_err "Can not find end line: $endline"
return 1
fi
j="$(_math $j - 1)"
_debug j $j
sed -n $i,${j}p "$filename" | head -n -1 | tail -n +2
sed -n $i,${j}p "$filename"
}