如何制作一个并排选择的linux对话框实用程序菜单?

时间:2012-07-28 00:03:35

标签: linux shell dialog

我可以使用哪些选项在多列中显示对话框菜单?

此:

dialog --title "[ M A I N - M E N U ]" \
        --menu "Please choose an option:" 15 55 5 \
            1 "View the config file" \
            2 "Edit config file" \
            3 "Exit"

在一列中显示所有内容

1 View the config file
2 Edit config file
3 Exit

如何将其显示为:

1 View the config file                  2 Edit config file
3 Exit

1 个答案:

答案 0 :(得分:2)

对话菜单设计为垂直方式。 菜单的选择以UP / DOWN方式进行。 单行中的两个选项是不可能的。