/usr/bin/hexmerge is in unifont-bin 1:5.1.20080914-1.1ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/usr/bin/perl
while (<>)
{
$G{$1}=$2 if /^(....):(.+)\n/;
}
for (sort keys %G)
{
print "$_:$G{$_}\n";
}
# hexmerge taipei16.hex cns-2-16.hex jisksp16.hex jiskan16.hex
# hanglm16.hex gb16fs.hex ethiopic.hex etl | tee select
|