Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 Linux 控制台上同时查看两个对话框窗口,一个窗口查看进度条,第二个尾箱查看日志正在运行。
问题是控制台中央的对话框
我想要的是在控制台上同时查看两个对话框,而进度条位于屏幕顶部,而尾部框应显示在屏幕下方。
如何实施?
如何将对话框窗口向上或向下而不是在中心?
dialog --title "RUN TASKS FROM TEXT TABLE" --gauge "Please wait..." 10 70 0 dialog --tailbox file.log 10 100
您可能可以使用--tailboxbg, 后跟--and-widget然后--gauge. 使用该--begin选项,小部件的定位很简单。复杂之处在于处理来自键盘的输入:对话框-tailboxbg通过在相应窗口中轮询输入来允许多个选项的特殊情况。该轮询对于类似的小部件(具有输入)“有效”,但--gauge不使用来自键盘的输入。
--tailboxbg
--and-widget
--gauge
--begin
-tailboxbg
标签