[Solved] Display an ASCII table of characters 32 to 112 with bash


You can use following command

man ascii

It shows ascii table.

For displaying ascii from 32 to 112

for((i=32;i<=112;i++)) do printf "$i --> ";printf \\$(printf '%03o\t' "$i");printf '\n' ;done;printf "\n"

5

solved Display an ASCII table of characters 32 to 112 with bash