home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a524 / 40.ddi / read.sh < prev    next >
Encoding:
Text File  |  1980-01-08  |  695 b   |  27 lines

  1. :
  2. # $Header: read.sh,v 6.3 89/03/15 15:40:28 rafsarif Exp $ read.sh
  3.  
  4. # Read an input or use a default value with optional escape to sh.
  5. #       usage:    DEFLT=<default> ; . read.sh ; SH_VAR=$RDVAR
  6. #  Use a ! to escape to a sub-shell. When you exit from the
  7. #  sub-shell you may still enter a new value or use the displayed
  8. #  default.  If the variable ORACLE_DEFAULT is set to T, then don't
  9. #  do a read, but just take the DEFLT value.
  10. #
  11.  
  12. case $ORACLE_DEFAULT in
  13.     T)    RDVAR=$DEFLT ; echo "$DEFLT" ;;
  14.     *)    while :
  15.     do
  16.         echo $N "[${DEFLT}]: $C"
  17.         read RDVAR
  18.         case $RDVAR in
  19.         "")    RDVAR=$DEFLT ; break ;;
  20.         !*)    ${SHELL-/bin/sh} ; echo ;;
  21.         *)    break ;;
  22.         esac
  23.     done ;;
  24. esac
  25.