summaryrefslogtreecommitdiff
path: root/textd
blob: 57394a0c9db77c643db72abd4fb9e7c6fb784282 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
#usage:
#	textd DIR
#		reads from stdin, and displays all text vertically using fonts
#		in DIR
#	assumes unicode utf-8 input
codes=$(iconv -f utf8 -t utf32be | xxd -u -p -c 4)
#convert to decimal
dec=$(echo -n "ibase=16;$codes" | bc)
dec=($dec)
for decimal_code in "${dec[@]}"; do
	 ./fontd "$decimal_code" "$1"
done