X-Git-Url: http://git.shiar.net/unifont.git/blobdiff_plain/527ee724d6dd13bf80699e653962a3d082631377..95e8d0be857e4bf0387fc5174276c1e4ab75ce5b:/src/unihexfill diff --git a/src/unihexfill b/src/unihexfill new file mode 100755 index 0000000..2008f32 --- /dev/null +++ b/src/unihexfill @@ -0,0 +1,8 @@ +#!/bin/sh + +# input is a start, stop range pair +# output is a list of code points with hexadecimal filler glyphs +grep "^[0-9A-Fa-f]" $1 | \ + awk 'NF == 1 {print "unihexgen " $1 " " $1;} \ + NF == 2 {print "unihexgen " $1 " " $2;}' | \ + /bin/sh -s