File: showconsolefont

package info (click to toggle)
kbd 2.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,980 kB
  • sloc: ansic: 14,562; javascript: 3,038; sh: 1,154; pascal: 643; makefile: 614; lex: 542; yacc: 338; perl: 126; python: 96; sed: 6
file content (20 lines) | stat: -rwxr-xr-x 365 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
#
# From klaus.stehle@uni-tuebingen.de Tue Jan 25 07:24:02 2000
#
# A small shell script version of the `showconsolefont' C program
#

echo -e "\033%G"
for L in "0 2 4 6" "1 3 5 7"; do
    for P in 0 1 2 3 4 5 6 7; do
	for U in 0 1 2 3; do
	    for K in $L; do
		echo -ne "  \357\20$U\2$K$P"
	    done
	done
	echo
    done
    echo
done
echo -ne "\033%@"