Reintroduce group COUNT loop.

This commit is contained in:
nicholas 2018-09-05 19:14:43 -04:00
parent 8c3c4c7995
commit 260ace4538

View File

@ -61,6 +61,8 @@ if [ "$COUNT" -lt 1 ] || [ "$WORDS" -lt 1 ]; then
fi
for (( y = 1; y <= $COUNT; y++ )); do
for i in {1..5}; do
for (( z = 1; z <= $WORDS; z++ )); do # give us WORDS words words
@ -75,6 +77,8 @@ done
echo ''
done
exit 1