我在对话框上有一个动态菜单(这些项目是从数组中提供的),但菜单没有显示选定的选项
gp_options=()
for i in `find ~ -type d -name .git`; do
gp_options+=("" "$i")
done
gp_dialog=(dialog --stdout --extra-button --help-button \
--ok-label 'Access repository' \
--extra-label 'Create repository' \
--cancel-label 'Remove repository'
--help-label 'Cancel' \
--backtitle "Welcome to Git Bash `whoami`!" \
--title ' Manage repositories ' \
--menu 'Manage repositories' \
0 0 0 \
"${gp_options[@]}")
dialog --stdout --msgbox "$manage_repositories" 0 0
经过几个小时的研究,我终于找到了答案: