for j in $(seq 10 3600);do – terminates at 1028
for j in $(seq 100 3600);do – terminates at 1118
for j in $(seq 1000 3600);do – terminates at 2018
I expected the loop to generate all the numbers from lower limit to upper limit
#!/bin/ash
for j in $(seq 10 3600);do
echo $j
while read -n1 digit; do
:
done < <(echo -n "$j")
done
New contributor
therealchrisgiles is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.