Update style of for loop, from using seq to C style.

This commit is contained in:
hasecilu 2023-05-31 11:37:06 -06:00
parent e72d7ba5e7
commit bf4fc58b8b
No known key found for this signature in database
GPG key ID: 1E3F5A13C8F3337E

View file

@ -39,7 +39,7 @@ function print-decimal-unicode-range() {
# add fillers to array to maintain table:
if [ "$leftoverSpaces" -lt "$wrapAt" ]; then
for _ in $(seq 1 $leftoverSpaces); do
for ((c = 1; c <= leftoverSpaces; c++)); do
originalSequence+=(0)
done
fi