如何将变量输入 zenity --text-info 框?

How to feed a variable into a zenity --text-info box?

出于某种原因,zenity --text 框不会显示文本字符串。可能是因为它太长了。我希望 --text-info 框可以解决问题。

有没有办法让 --filename= 参数接受字符串输入而不是文件输入?

示例:

help_zenity_output(){
    zenity --text-info --width 777 --title 'Hotstrings -> Command' \
    --filename=<<<""
    #--text=""
}

无需使用--filename参数。放下它。 Zenity 从 stdin.

读取内容
help_zenity_output(){
  zenity --text-info --width 777 --title 'Hotstrings -> Command' <<< ""
}