如何使whiptail全终端屏幕? “和终端一样大”,比如流畅的CSS,比如100%
答案1
stty size
为您提供所需的一切。例如:
whiptail --msgbox test $(stty size)
答案2
你的意思是这样的吗?
whiptail --msgbox hello $(stty -a | tr \; \\012 |
egrep 'rows|columns' | cut '-d ' -f3)
如何使whiptail全终端屏幕? “和终端一样大”,比如流畅的CSS,比如100%
stty size
为您提供所需的一切。例如:
whiptail --msgbox test $(stty size)
你的意思是这样的吗?
whiptail --msgbox hello $(stty -a | tr \; \\012 |
egrep 'rows|columns' | cut '-d ' -f3)