diff options
| author | Mohamed Akram <mohd.akram@outlook.com> | 2024-01-15 18:27:04 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2024-01-15 18:30:37 +0000 |
| commit | ec13a838e6857585d3c3db70a0a67e337248ec28 (patch) | |
| tree | 4a6008b2a5fc0e87e784deac54aa2779a93e22b2 /usr.bin | |
| parent | a5ef95cd228e43bcc459a5c8a9911e57888ba5fd (diff) | |
Diffstat (limited to 'usr.bin')
| -rwxr-xr-x | usr.bin/man/man.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/man/man.sh b/usr.bin/man/man.sh index 777726f880db..efb05603f912 100755 --- a/usr.bin/man/man.sh +++ b/usr.bin/man/man.sh @@ -312,7 +312,7 @@ man_check_for_so() { # We need to loop to accommodate multiple .so directives. while true do - line=$($cattool "$manpage" | head -1) + line=$($cattool "$manpage" | head -n1) case "$line" in .so*) trim "${line#.so}" decho "$manpage includes $tstr" @@ -897,11 +897,11 @@ search_whatis() { bad=${bad#\\n} if [ -n "$good" ]; then - echo -e "$good" | $MANPAGER + printf '%b\n' "$good" | $MANPAGER fi if [ -n "$bad" ]; then - echo -e "$bad" >&2 + printf '%b\n' "$bad" >&2 fi exit $rval |
