]> git.ipfire.org Git - thirdparty/bash.git/blob - tests/misc/test-minus-e.1
Imported from ../bash-2.01.tar.gz.
[thirdparty/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