0

我想使用whiptail显示一条包含度数符号的消息。我尝试了这些,但似乎没有一个工作:

whiptail --title "Weather Info" --msgbox '\N{U+00B0}'  17 60 3>&1 1>&2 2>&3
whiptail --title "Weather Info" --msgbox "\N{U+00B0}"  17 60 3>&1 1>&2 2>&3
whiptail --title "Weather Info" --msgbox "\xc2\xb0"  17 60 3>&1 1>&2 2>&3
whiptail --title "Weather Info" --msgbox '\xc2\xb0'  17 60 3>&1 1>&2 2>&3

这是不可能的吗?

4

1 回答 1

1

对于这种转义情况,whiptail 和 bash 都没有提供帮助。您可以使用 bash 的内置 echo 来验证这一点。

如果您在没有任何转义帮助的情况下使用文字度数符号,可以:

whiptail --title "Weather Info" --msgbox '°'  17 60 3>&1 1>&2 2>&3
于 2015-05-21T09:02:48.623 回答