Reintroduce group COUNT loop.
This commit is contained in:
parent
8c3c4c7995
commit
260ace4538
10
passphrase
10
passphrase
@ -61,7 +61,9 @@ if [ "$COUNT" -lt 1 ] || [ "$WORDS" -lt 1 ]; then
|
|||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for i in {1..5}; do
|
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
|
for (( z = 1; z <= $WORDS; z++ )); do # give us WORDS words words
|
||||||
|
|
||||||
@ -71,9 +73,11 @@ for i in {1..5}; do
|
|||||||
done
|
done
|
||||||
echo ''
|
echo ''
|
||||||
|
|
||||||
done
|
done
|
||||||
|
|
||||||
echo ''
|
echo ''
|
||||||
|
|
||||||
|
done
|
||||||
|
|
||||||
exit 1
|
exit 1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user