Sophie

Sophie

distrib > Mandriva > 8.2 > i586 > media > contrib > by-pkgid > 6e125fffce41d55d01eca1f56b99ee15 > files > 76

Xdialog-2.0.4-2mdk.i586.rpm

#!/bin/sh

USERTIME=`Xdialog --stdout --title "TIMEBOX" --timebox "Please set the time..." 0 0`

case $? in
  0)
    echo "Time entered: $USERTIME.";;
  1)
    echo "Cancel pressed.";;
  255)
    echo "Box closed.";;
esac