# Example from page 71 PS3='Pick one of the above: ' TMOUT=10 select i in list edit quit do case $i in list) cat "$foo";; edit) ${EDITOR-vi} "$foo";; quit) break;; "") print -u2 you must select one of the above;; esac done