Questions tagged «select»

4
bash:使用空格安全的find到select程序
给定以下文件名: $ ls -1 file file name otherfile bash 本身与嵌入式空白完美配合: $ for file in *; do echo "$file"; done file file name otherfile $ select file in *; do echo "$file"; done 1) file 2) file name 3) otherfile #? 但是,有时我可能不想使用每个文件,或者甚至不想严格使用in $PWD,它是其中的find源。它也名义上处理空格: $ find -type f -name file\* ./file ./file …

2
使用`select`命令在Bash中打印菜单
我正在尝试使用select命令实现一个简单的菜单。脚本(出于测试目的)如下: #!/bin/bash echo "*******************" PS3='Select an option and press Enter: ' options=("apache" "named" "sendmail") select opt in "${options[@]}" do case $opt in "apache") date ;; "named") echo "test" ;; "sendmail") echo "test 2" ;; *) echo "invalid option";; esac done echo "*********************" 脚本无法识别我提供的任何有效输入,并且始终打印“无效选项”消息。这个脚本在做什么错?

1
我可以更改选择选项的显示方式吗?
我正在使用bash中的select和case。我目前有9个选项,可以很好地整理整齐的3x3网格选项,但显示如下: 1) show all elements 4) write to file 7) clear elements 2) add elements 5) generate lines 8) choose file 3) load file 6) clear file 9) exit 我希望它显示在列之前的行中: 1) show all elements 2) add elements 3) load file 4) write to file 5) generate lines 6) clear file …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.