我正在尝试向 Whiptail 对话框的反标题添加多行。
我试过了:
whiptail --clear --backtitle "asdf \n asdf \n asdf" \
--title test --yesno test \
0 0 "test" 3>&1 1>&2 2>&3
whiptail --clear --backtitle "asdf
asdf
asdf" \
--title test --yesno test \
0 0 "test" 3>&1 1>&2 2>&3
whiptail --clear --backtitle "$(printf '%s\n' asdf asdf asdf)" \
--title test --yesno test \
0 0 "test" 3>&1 1>&2 2>&3
有没有办法拥有多行反标题?