Re: [PATCH] scripts/bash_aliases: Fix error messages
From: Michael Kerrisk (man-pages) <hidden>
Date: 2021-05-09 23:33:43
Hi ALex, On 5/10/21 9:39 AM, Alejandro Colomar wrote:
Fix the error messages to clearly show that both dirs and manual pages are accepted, and that more than one argument is accepted. Signed-off-by: Alejandro Colomar <redacted>
Applied. Thanks, Michael
quoted hunk ↗ jump to hunk
--- scripts/bash_aliases | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)diff --git a/scripts/bash_aliases b/scripts/bash_aliases index 7b1b7da9c..a14026bda 100644 --- a/scripts/bash_aliases +++ b/scripts/bash_aliases@@ -126,7 +126,7 @@ function man_section() function man_lsfunc() { if ! [ -v 1 ]; then - >&2 echo "Usage: ${FUNCNAME[0]} <dir>"; + >&2 echo "Usage: ${FUNCNAME[0]} <manpage|manNdir>..."; return ${EX_USAGE}; fi@@ -148,7 +148,7 @@ function man_lsfunc() function man_lsvar() { if ! [ -v 1 ]; then - >&2 echo "Usage: ${FUNCNAME[0]} <dir>"; + >&2 echo "Usage: ${FUNCNAME[0]} <manpage|manNdir>..."; return ${EX_USAGE}; fi
-- Michael Kerrisk Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/ Linux/UNIX System Programming Training: http://man7.org/training/