如何在 Bash 中将 IDN 转换为 Punycode?

如何在 Bash 中将 IDN 转换为 Punycode?

在 bash 中将 IDN(例如 президент.рф)转换为 Punycode 的最简单方法是什么?

答案1

看看idn

[U] net-dns/libidn
     Available versions:  1.22 (~)1.22-r1 {doc elibc_FreeBSD emacs java mono nls static-libs}
     Installed versions:  1.22(03:12:19 PM 07/04/2011)(nls static-libs -doc -elibc_FreeBSD -emacs -java -mono)
     Homepage:            http://www.gnu.org/software/libidn/
     Description:         Internationalized Domain Names (IDN) implementation

例如:

$ echo "президент.рф" | idn
xn--d1abbgf6aiiy.xn--p1ai

答案2

假设你的系统上有 python,python -c 'import sys;print sys.argv[1].decode("utf-8").encode("idna")' "президент.рф"就可以了。

答案3

在 MacOS 中brew install homebrew/versions/libidn2

然后echo "президент.рф" | idn2

相关内容