From b7ce245e859b946deee740bc617f2b997a52e9dd Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 27 Dec 2018 00:01:15 +1300 Subject: Two-space sentences in shell comments --- bin/rep.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/rep.sh') diff --git a/bin/rep.sh b/bin/rep.sh index e53cbac3..522187b6 100644 --- a/bin/rep.sh +++ b/bin/rep.sh @@ -11,13 +11,13 @@ fi c=$1 shift -# Check the repetition count looks sane. Zero is fine! +# Check the repetition count looks sane. Zero is fine! if [ "$c" -lt 0 ] ; then printf >&2 '%s: Nonsensical negative count\n' "$self" exit 2 fi -# Run the command the specified number of times. Stop immediately as soon as a +# Run the command the specified number of times. Stop immediately as soon as a # run fails. while [ "${n=1}" -le "$c" ] ; do "$@" || exit -- cgit v1.2.3