Added utility scripts
[terpinus.git] / dup.rb
blob0b7c295fb7df0cb589be351da5657e1036dc40c4
1 #!/usr/bin/ruby
2 # this program makes missing Vietnamese glyphs from "standard" glyphs
3 # so you only need to add accents to complete the glyphs
4 # Usage: ./dup.rb source.bdf output.bdf
5 require 'bdf'
6 a = BDF.new(ARGV[0])
7 a.dup_all
8 a.write(ARGV[1])