freebsd-src/contrib/dialog/samples/editbox-utf8
2021-02-26 10:16:49 +01:00

36 lines
857 B
Bash
Executable file
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/sh
# $Id: editbox-utf8,v 1.10 2020/11/26 00:03:58 tom Exp $
. ./setup-vars
. ./setup-tempfile
. ./setup-utf8
. ./setup-edit
cat << EOF > $input
Hi, this is a edit box. You can use this to
allow the user to enter or modify free-form text.
Try it now!
----------- --------------------------------
Choose Description of the OS you like
----------- --------------------------------
The Great Unix Clone for 386/486
Another free Unix Clone for 386/486
/ IBM OS/2
Microsoft Windows NT
IBM PC DOS
Microsoft DOS
----------- --------------------------------
----------- --------------------------------
EOF
$DIALOG --title "EDIT BOX" \
--fixed-font "$@" --editbox $input 0 0 2>$output
returncode=$?
. ./report-edit