我想使用鞭尾显示一条包含度数符号的消息。我尝试了这些,但似乎没有一个工作:
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 "xc2xb0" 17 60 3>&1 1>&2 2>&3
whiptail --title "Weather Info" --msgbox 'xc2xb0' 17 60 3>&1 1>&2 2>&3
这是不可能的吗?
whiptail和bash都没有提供这种转义的帮助。您可以使用bash的内置echo来验证。
如果您使用文字程度符号而没有任何转义的帮助,可以工作:
whiptail --title "Weather Info" --msgbox '°' 17 60 3>&1 1>&2 2>&3