Reputation: 6372
I have a select statement that shows a list of dynamic files ($list). I'd like to be able to input "1, 2, 3" and it will have file 1, file 2, and file 3 be selected. How do I modify this select (maybe even a different structure is needed) to allow multiple options to be selected?
select option in $list; do
case $option in
* )
if [ "$option" ]; then
echo "Selected: " $option
break
else
echo "Invalid input. Try again."
fi;
esac
done
Upvotes: 3
Views: 9989
Reputation: 630
As select
always fills the variable REPLY, you could loop through your $list
afterwards. (The VAR in $list
$VAR is only filled, with single selection.)
e.g:
select ITEMS in $list; do
case $ITEMS in
* )
break
esac
done
# it $ITEMS is empty, but $REPLY not, we got multi selection
if [ -z "$ITEMS" ] && [ -n "$REPLY" ]; then
# add some spaces to begin and end for simpler checking below, regarding multi digit REPLY entries
REPLY_LIST=" $REPLY "
CNT=1
for ITEM in $list; do
if [[ "$REPLY_LIST" =~ " $CNT " ]]; then
ITEMS="$ITEMS $ITEM"
fi
CNT=$((CNT+1))
done
elif [ -z "$ITEMS" ]; then
echo nothing selected
exit
fi
echo "Selected: $ITEMS ($REPLY)"
Upvotes: 0
Reputation: 7922
This code doesn't use select
, but does pretty much what you want-
#! /bin/bash
files=("file1" "file2" "file3" "file4" "Quit")
menuitems() {
echo "Avaliable options:"
for i in ${!files[@]}; do
printf "%3d%s) %s\n" $((i+1)) "${choices[i]:- }" "${files[i]}"
done
[[ "$msg" ]] && echo "$msg"; :
}
prompt="Enter an option (enter again to uncheck, press RETURN when done): "
while menuitems && read -rp "$prompt" num && [[ "$num" ]]; do
[[ "$num" != *[![:digit:]]* ]] && (( num > 0 && num <= ${#files[@]} )) || {
msg="Invalid option: $num"; continue
}
if [ $num == ${#files[@]} ];then
exit
fi
((num--)); msg="${files[num]} was ${choices[num]:+un-}selected"
[[ "${choices[num]}" ]] && choices[num]="" || choices[num]="x"
done
printf "You selected"; msg=" nothing"
for i in ${!files[@]}; do
[[ "${choices[i]}" ]] && { printf " %s" "${files[i]}"; msg=""; }
done
echo "$msg"
Demo-
$ ./test.sh
Avaliable options:
1 ) file1
2 ) file2
3 ) file3
4 ) file4
5 ) Quit
Enter an option (enter again to uncheck, press RETURN when done): 1
Avaliable options:
1x) file1
2 ) file2
3 ) file3
4 ) file4
5 ) Quit
file1 was selected
Enter an option (enter again to uncheck, press RETURN when done): 2
Avaliable options:
1x) file1
2x) file2
3 ) file3
4 ) file4
5 ) Quit
file2 was selected
Enter an option (enter again to uncheck, press RETURN when done): 3
Avaliable options:
1x) file1
2x) file2
3x) file3
4 ) file4
5 ) Quit
file3 was selected
Enter an option (enter again to uncheck, press RETURN when done): 1
Avaliable options:
1 ) file1
2x) file2
3x) file3
4 ) file4
5 ) Quit
file1 was un-selected
Enter an option (enter again to uncheck, press RETURN when done):
You selected file2 file3
Upvotes: 8