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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
neologdいり