Fix up whatis/apropos issue displaying all output on a single due to
forgotten quotes. Submitted by: Brandon Gooch Approved by: wes (mentor, implicit)
This commit is contained in:
parent
a22b69b772
commit
00e05e697e
@ -719,11 +719,11 @@ search_whatis() {
|
|||||||
bad=${bad#\\n}
|
bad=${bad#\\n}
|
||||||
|
|
||||||
if [ -n "$good" ]; then
|
if [ -n "$good" ]; then
|
||||||
echo -e $good | $PAGER
|
echo -e "$good" | $PAGER
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "$bad" ]; then
|
if [ -n "$bad" ]; then
|
||||||
echo -e $bad >&2
|
echo -e "$bad" >&2
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exit $rval
|
exit $rval
|
||||||
|
Loading…
Reference in New Issue
Block a user