code / scripts

Lines748 Shell528 Python72 Lua67 Bourne Again Shell62 make15
1 others 4
Markdown4
(6 lines)
1 #!/bin/sh
2 # alternate-character-set - A simple script to show the alternate character set characters
3 for i in $(seq 65 126); do
4 c=$(printf "\\x$(printf "%02x" $i)")
5 printf "0x%02x %c: \033(0%c\033(B\n" "$i" "$c" "$c"
6 done