summaryrefslogtreecommitdiff
path: root/chr.sh
blob: 3759effdd262052d5ccd2394df0cfaa3fd7d6c02 (plain)
1
2
3
4
5
6
7
8
9
10
if [ $# -eq 0 ]; then
	printf 'usage: %s number...\n' "$0"
	exit 1
fi

while [ $# -gt 0 ]; do
	printf '%b' "\\0$(printf '%o' "$1")"
	shift
done
printf '\n'