On 09/22/2014 10:53 AM, Alban Bedel wrote: > The test for the argument count was broken, the upper limit test used > less-or-equal 1 instead of greater than 1. > --- > man/dummy-man | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/man/dummy-man b/man/dummy-man > index bf31912..65b85d5 100755 > --- a/man/dummy-man > +++ b/man/dummy-man > @@ -39,7 +39,7 @@ while test $# -gt 0; do > done > > test $# -gt 0 || fatal_ "missing argument" > -test $# -le 1 || fatal_ "too many non-option arguments" > +test $# -gt 1 || fatal_ "too many non-option arguments" > > baseout=`basename_ "$output"` > sed 's/^/WARNING: /' >&2 <<END
Nice one. I've pushed that at: http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=1f994f3 thanks! Pádraig.
