From c0a489fae51a17c50d73a71d51778d8fbed9b5f0 Mon Sep 17 00:00:00 2001 From: matt Date: Mon, 5 Feb 2024 21:49:58 +0100 Subject: [PATCH] Update torso.sh Adding a missing period in first error message. --- torso.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torso.sh b/torso.sh index 87c4218..3f68c0c 100644 --- a/torso.sh +++ b/torso.sh @@ -10,7 +10,7 @@ while getopts ":n:" opt; do n) re='^[0-9]+$' if ! [[ $OPTARG =~ $re ]] ; then - echo "Option -n requires a numeric argument" + echo "Option -n requires a numeric argument." exit 1 fi lines=$(($OPTARG - 1))