GOOD SHELL MAS BOY
Server: Apache/2.4.52 (Ubuntu)
System: Linux vmi1836763.contaboserver.net 5.15.0-130-generic #140-Ubuntu SMP Wed Dec 18 17:59:53 UTC 2024 x86_64
User: www-data (33)
PHP: 8.4.10
Disabled: NONE
Upload Files
File: //usr/share/doc/dialog/examples/editbox-utf8
#!/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
	-----------	--------------------------------
	Linux	The Great Unix Clone for 386/486 
	NetBSD	Another free Unix Clone for 386/486 
	OS/2		IBM OS/2 
	WIN NT	Microsoft Windows NT 
	PCDOS	IBM PC DOS 
	MSDOS	Microsoft DOS
	-----------	--------------------------------
        -----------     --------------------------------
EOF

$DIALOG --title "EDIT BOX" \
	--fixed-font "$@" --editbox $input 0 0 2>$output
returncode=$?

. ./report-edit