From 94bf02f41b28c2dd5251d9bcc9368da2ec542f84 Mon Sep 17 00:00:00 2001 From: Alejandro Colomar Date: Sun, 9 May 2021 23:39:21 +0200 Subject: [PATCH] scripts/bash_aliases: Fix error messages 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 Signed-off-by: Michael Kerrisk --- scripts/bash_aliases | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/bash_aliases b/scripts/bash_aliases index 7b1b7da9ca..a14026bda2 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]} "; + >&2 echo "Usage: ${FUNCNAME[0]} ..."; return ${EX_USAGE}; fi @@ -148,7 +148,7 @@ function man_lsfunc() function man_lsvar() { if ! [ -v 1 ]; then - >&2 echo "Usage: ${FUNCNAME[0]} "; + >&2 echo "Usage: ${FUNCNAME[0]} ..."; return ${EX_USAGE}; fi -- 2.47.2