home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / utils / disk-man / linux-fl.000 / linux-fl / linux-floppies / building-blocks / finished < prev    next >
Encoding:
Text File  |  1996-04-05  |  323 b   |  15 lines

  1. #!/bin/sh
  2.  
  3. # YESNO BOX
  4. # ------------
  5. # It prompts the user for a value. Then that value is store
  6. # in file /tmp/Fdrive_size, from where other programs may
  7. dialog     --title "FORMATTING"\
  8.     --yesno "\n  Format another?   \n" 8 25
  9.  
  10.     if [ $? = 1 -o $? = 255 ]; then
  11.          echo "I got NO"
  12.          exit
  13.     fi
  14.         echo "I got YES"
  15.