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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-04-05
|
323 b
|
15 lines
#!/bin/sh
# YESNO BOX
# ------------
# It prompts the user for a value. Then that value is store
# in file /tmp/Fdrive_size, from where other programs may
dialog --title "FORMATTING"\
--yesno "\n Format another? \n" 8 25
if [ $? = 1 -o $? = 255 ]; then
echo "I got NO"
exit
fi
echo "I got YES"