Update torso.sh

Adding a missing period in first error message.
This commit is contained in:
2024-02-05 21:49:58 +01:00
parent 0e48172195
commit c0a489fae5

View File

@@ -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))