Last active
April 14, 2023 04:32
-
-
Save eggplants/f1020ca2a0acef9dbd46746afa467143 to your computer and use it in GitHub Desktop.
ルビ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
if ! command -v mecab nkf &>/dev/null | |
then | |
echo "install: mecab nkf" >&1 | |
exit 1 | |
fi | |
read -r input | |
yomi=(`mecab <<<"$input"|sed 's/^.*\t//'|awk -F, '$0=$8'`) | |
pos=0 | |
for i in `mecab -Owakati <<<"$input"`;do | |
if [[ "${yomi[pos]}" == "$i" || `nkf --hiragana <<<"${yomi[pos]}"` == "$i" ]] | |
then | |
echo -n "$i" | |
else | |
echo -n "${i}【${yomi[pos]}】" | |
fi | |
((pos++)) | |
done | |
echo |
Author
eggplants
commented
Apr 14, 2023
•
neologdいり
現【ゲン】福岡県【フクオカケン】南部【ナンブ】である筑後国【チクゴノクニ】御原郡【ミハラグン】板【イタ】井郷【イゴウ】が起源【キゲン】(ルーツ)である、中臣鎌足【ナカトミノカマタリ】が天智天皇【テンヂテンノウ】より賜っ【タマワッ】たことに始まる【ハジマル】氏【シ】(藤原氏【フジワラシ】)秀郷流【ヒデサトリュウ】がある。ほか大蔵氏【オオクラウジ】などにもみられる。日出藩【ヒジハン】にみられる。
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment