/contrib/dialog/samples/editbox-utf8

https://bitbucket.org/freebsd/freebsd-head/ · Shell · 35 lines · 24 code · 9 blank · 2 comment · 2 complexity · 39d68fc61ca877a55a94f3050ae576b4 MD5 · raw file

  1. #!/bin/sh
  2. # $Id: editbox-utf8,v 1.9 2010/01/13 10:20:03 tom Exp $
  3. . ./setup-vars
  4. . ./setup-tempfile
  5. . ./setup-utf8
  6. . ./setup-edit
  7. cat << EOF > $input
  8. Hi, this is a edit box. You can use this to
  9. allow the user to enter or modify free-form text.
  10. Try it now!
  11. ----------- --------------------------------
  12. Choose Description of the OS you like
  13. ----------- --------------------------------
  14. Linux The Great Unix Clone for 386/486
  15. NetBSD Another free Unix Clone for 386/486
  16. OS/ IBM OS/2
  17. WIN NT Microsoft Windows NT
  18. PCDOS IBM PC DOS
  19. MSDOS Microsoft DOS
  20. ----------- --------------------------------
  21. ----------- --------------------------------
  22. EOF
  23. $DIALOG --title "EDIT BOX" \
  24. --fixed-font "$@" --editbox $input 0 0 2>$output
  25. retval=$?
  26. . ./report-edit