03d7ecfc918b0f4d5b46dc9203291c82b39c35b9
[platform/upstream/bash.git] / tests / misc / test-minus-e.1
1 touch .file
2 while set -e ; test -r .file ; do
3         echo -n "stop loop? "
4         read reply
5         case "$reply" in
6         y*)     rm .file non-dash-file ;;
7         esac
8         set +e
9 done
10
11         
12