The script input is a natural number that is transformed into letters on screen and also played back using the "Festival" speech synthesizer. There are 4 scripts: one for Catalan, one for English, and one for Russian. A fourth script shows a loop to count from 0 to 100 in Russian. A Linux computer with the "festival" speech synthesis program installed is required.
Numbers to letters in Catalan
Numbers to letters in English
Numbers to letters in Russian
Iteration from zero to 100 in Russian
out.txt
#!/bin/bash # 20200830 # Counter 0-100 i=0 until [ $i -gt 100 ] do echo i: $i ((i=i+1)) ./n2ll-ru.sh $i done