Tagged Questions
6
votes
2answers
1k views
Printing decimal to ascii character, my command does not output as intended
I wanted to output a string of all the ascii characters with the following command
for i in `seq 32 127`; do printf "%c" $i; done
The output of the above command is:
...