/contrib/dialog/samples/infobox4

https://bitbucket.org/freebsd/freebsd-head/ · Shell · 22 lines · 17 code · 3 blank · 2 comment · 4 complexity · 36beb0236909cae2a9e8e19bc9ad132c MD5 · raw file

  1. #! /bin/sh
  2. # $Id: infobox4,v 1.5 2010/01/13 10:20:03 tom Exp $
  3. . ./setup-vars
  4. left=10
  5. unit="seconds"
  6. while test $left != 0
  7. do
  8. $DIALOG --sleep 1 \
  9. --begin 0 5 \
  10. --title "INFO BOX" "$@" \
  11. --infobox "Hi, this is an information box. It is
  12. different from a message box: it will
  13. not pause waiting for input after displaying
  14. the message. The pause here is only introduced
  15. by the sleep command within dialog.
  16. You have $left $unit to read this..." 0 0
  17. left=`expr $left - 1`
  18. test $left = 1 && unit="second"
  19. done