From: Paul L. <pdo...@us...> - 2005-12-10 12:14:57
|
Update of /cvsroot/serverfilters/serversidefilter/script In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12931 Modified Files: test.sh Log Message: Index: test.sh =================================================================== RCS file: /cvsroot/serverfilters/serversidefilter/script/test.sh,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** test.sh 21 May 2005 09:13:19 -0000 1.1.1.1 --- test.sh 10 Dec 2005 12:14:46 -0000 1.2 *************** *** 52,57 **** echo If you do not need to perform additional tests, remove the file 'test_creds' REMOVE=x ! while [ $REMOVE != 'y' ] && [ $REMOVE != 'Y' ] && ! [ $REMOVE != 'n' ] && [ $REMOVE != 'N' ] ; do read -p "Remove now? (Y/n): " REMOVE done; --- 52,57 ---- echo If you do not need to perform additional tests, remove the file 'test_creds' REMOVE=x ! while [ "$REMOVE" != 'y' ] && [ "$REMOVE" != 'Y' ] && ! [ "$REMOVE" != 'n' ] && [ "$REMOVE" != 'N' ] ; do read -p "Remove now? (Y/n): " REMOVE done; |