bash 脚本:如何使用对话框获取无线电列表上的项目名称
我需要使用对话框界面在 bash 脚本中创建一个无线电列表,例如,如果我有以下列表:
dialog --backtitle "OS information" \
--radiolist "Select OS:" 10 40 3 \
1 "Linux 7.2" off \
2 "Solaris 9" on \
3 "HPUX 11i" off
我需要当用户选择一个选项并按“确定”时,我的脚本可以读取项目的名称而不是项目的编号。
有可能吗?
谢谢!
I need to make a radiolist in bash script using dialog interface, for example if I have the following list:
dialog --backtitle "OS information" \
--radiolist "Select OS:" 10 40 3 \
1 "Linux 7.2" off \
2 "Solaris 9" on \
3 "HPUX 11i" off
I need when the user chooses an option and presses "ok", my script could read the item's name and not the item's number.
It is possible?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将预期结果放入数组中:
You can put your expected results in an array:
在 Termux 应用
> 中/dev/tty 2>&1
不起作用,但3>&1 1>&2 2>&3 3>&-
工作正常。取自:BASH:变量中的对话框输入
sooo....
in Termux app
>/dev/tty 2>&1
is not working, but3>&1 1>&2 2>&3 3>&-
is working perfectly.taken from:BASH: Dialog input in a variable
sooo....