我正在尝试添加多行的Whiptail对话框背景。
我试过了:
whiptail --clear --backtitle "asdf \n asdf \n asdf" \
--title test --yesno test \
0 0 "test" 3>&1 1>&2 2>&3whiptail --clear --backtitle "asdf
asdf
asdf" \
--title test --yesno test \
0 0 "test" 3>&1 1>&2 2>&3whiptail --clear --backtitle "$(printf '%s\n' asdf asdf asdf)" \
--title test --yesno test \
0 0 "test" 3>&1 1>&2 2>&3有没有办法有一个多行的背景标题?
https://stackoverflow.com/questions/64808425
复制相似问题