#!/bin/bash
# 20200830
# Counter 0-100

i=0

until [ $i -gt 100 ]
do
  echo i: $i
  ((i=i+1))

./n2ll-ru.sh $i

done



