我想使用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
这样做不可能吗?
答案 0 :(得分:0)
无论是whiptail还是bash都没有提供这种逃逸的帮助。您可以使用bash的内置回声来验证这一点。
如果您在没有任何逃避帮助的情况下使用文字度符号,则
:whiptail --title "Weather Info" --msgbox '°' 17 60 3>&1 1>&2 2>&3