logoISU  

CS469/569 - Linux and Unix Administration and Networking

Spring 2022

Displaying ./code/02-03-Bash_Conditionals_and_Loops/select.sh

#!/bin/bash


select word in *
do
  echo "You type in $word";
  echo "Your reply was $REPLY";
  if [[ ! -z $word ]]; then break; fi
done