如何处理清单菜单中用户选择的多个参数?

如何处理清单菜单中用户选择的多个参数?

我正在创建根据清单对话框中的信息运行命令的脚本:

dialog --checklist "Choose what you want to install:" 0 0 0  1 mysql on 2 java on  3 git off 2> tempfile

对话框

tempfile我在( )中拥有正确的数据1 2,但我不知道如何在我的脚本中使用这些数据。

答案1

您可以使用--output-fd 1将输出发送到标准输出,然后像平常一样捕获它。

answer=$(dialog --checklist "Choose what you want to install:" 0 0 0  1 mysql on 2 java on  3 git off --output-fd 1)

相关内容