/lib/ktrans: added tools to fetch skk dicts and convert them to ktrans jishos
This commit is contained in:
parent
498e9e7d83
commit
467c95b4a8
3 changed files with 16 additions and 0 deletions
12
lib/ktrans/README
Normal file
12
lib/ktrans/README
Normal file
|
@ -0,0 +1,12 @@
|
|||
#
|
||||
# The following are a set of tools to obtain and process dictionaries from the SKK project in order to use them with ktrans(1).
|
||||
#
|
||||
# grabskkdicts pulls the skk kana-kanji conversion dictionaries from the skk-dev/dict repo.
|
||||
# skk2ktrans takes an skk dictionary and converts it into a kanji jisho suitable to be used with ktrans(1).
|
||||
#
|
||||
# You can fetch and convert all the dictionaries by running this file.
|
||||
#
|
||||
|
||||
grabskkdicts
|
||||
for(d in skkdicts/SKK-JISYO.*)
|
||||
<$d skk2ktrans >$d.jisho
|
2
lib/ktrans/grabskkdicts
Executable file
2
lib/ktrans/grabskkdicts
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/rc
|
||||
git/clone https://github.com/skk-dev/dict skkdicts
|
2
lib/ktrans/skk2ktrans
Executable file
2
lib/ktrans/skk2ktrans
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/rc
|
||||
tcs -sf jis | awk '$1 !~ /;;/ {gsub("(^\/|\/$)", "", $2); gsub(" ", " "); gsub("\/", " ", $2);} {print}'
|
Loading…
Reference in a new issue