gpt4 book ai didi

Bash 选择没有标签的菜单格式

转载 作者:行者123 更新时间:2023-11-29 09:04:31 25 4
gpt4 key购买 nike

我在 Bash 中构建了一个简单的选择菜单。它当前水平显示菜单(带有选项卡),如下所示:

1) Create a VM from scratch   3) Command-line Usage
2) Management Menu 4) Quit

我希望列表看起来像这样:

1) Create a VM from scratch  
2) Management Menu
3) Command-line Usage
4) Quit

更新:这是我的代码:

PS3="Please choose a valid option : "
OPTIONS=("Create a VM from scratch" "Management Menu" "Command-line Usage" "Quit")
select opt in "${OPTIONS[@]}"; do
case $opt in
"Create a VM from scratch")
createit
exit
;;
"Management Menu")
mgmtmenu
exit
;;
"Command-line Usage ")
help
;;
"Quit")
exit
;;
*) echo invalid option;;
esac
done

如何显示选择菜单,每个选项单独一行?

最佳答案

Bash 定义了一个 $COLUMNS 环境变量,由 select 读取。

如 bash 的 man 所示:

COLUMNS
Used by the select compound command to determine the terminal
width when printing selection lists. Automatically set if the
checkwinsize option is enabled or in an interactive shell upon
receipt of a SIGWINCH.

关于Bash 选择没有标签的菜单格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37616552/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com