I wanted to convert the numbers from 1 to 26 to Latin alpgabet {a-z}. 1 correspnds to "a", and 2 to "b" and 26 to "z"
The following command only works for single digit numbers:
echo "$i" | tr 123456789 abcdefghi
for instance
echo "1" | tr 0123456789 abcdefghi
will produce "a"
How could you do it for :
echo "$i" | tr 01234567891011121314151617181920212223 abcdefghijklmnopqrstuvwxyz