#!/bin/bash
# 函数:显示选择列表并返回用户选择的选项
# 参数:
# $1 - 选项数组
# 返回值:
# 用户选择的选项
# 定义选择函数
select_option() {
choices=("$@") # 将选项数组声明为全局变量
selected=0 # 初始化选择索引
while true; do
clear
for index in "${!choices[@]}"; do
if [ $index -eq $selected ]; then
printf "\033[31m> ${choices[$index]}\033[0m\n" # 高亮显示选中的选项
else
echo " ${choices[$index]}"
fi
done
read -n1 -s key # 读取单个按键并保持输入的隐私
case "$key" in
A) # 上箭头
if [ $selected -gt 0 ]; then
selected=$((selected - 1))
fi
;;
B) # 下箭头
if [ $selected -lt $(( ${#choices[@]} - 1 )) ]; then
selected=$((selected + 1))
fi
;;
"") # 回车键
break
;;
esac
done
# 打印最终结果日志
selected_option="${choices[$selected]}"
echo "最终选择:$selected_option"
}
# 定义选项数组
options=("Option 1" "Option 2" "Option 3" "Option 4")
# 调用选择函数,并将选项数组作为参数传入
select_option "${options[@]}"
# 显示用户选择的选项
echo "你选择了:$selected_option"
标签:脚本,选项,Shell,option,index,selected,choices,文本,Option From: https://www.cnblogs.com/tedblog/p/18003791