source: trunk/essentials/app-shells/bash/tests/misc/test-minus-e.1

Last change on this file was 3228, checked in by bird, 18 years ago

bash 3.1

File size: 149 bytes
Line 
1touch .file
2while 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
9done
Note: See TracBrowser for help on using the repository browser.