Sophie

Sophie

distrib > Mageia > 6 > i586 > by-pkgid > 4174c5d615fc447bb42b54c389ed1453 > files > 13

Xdialog-2.3.1-8.mga6.i586.rpm

#!/bin/sh

result=`Xdialog --title "XDIALOG BUILDLIST" --backtitle "A user-built list" \
		--stdout --separator "|" \
		--buildlist "hello, this is a --buildlist..." 0 0 0 \
			    "1" "Item n° 1" "on" \
			    "2" "Item n° 2" "off" \
			    "3" "Item n° 3" "on" \
			    "4" "Item n° 4" "on" \
			    "5" "Item n° 5" "off" \
			    "6" "Item n° 6" "on"`

retval=$?
case $retval in
  0)
    echo "The user-built list is '$result'.";;
  1)
    echo "Cancel pressed.";;
  255)
    echo "Box closed.";;
esac