mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-18 22:15:46 +01:00
febdb46880
Approved by: re (marius)
19 lines
268 B
Bash
Executable File
19 lines
268 B
Bash
Executable File
#!/bin/sh
|
||
# $Id: inputbox6-utf8,v 1.9 2013/09/24 00:06:02 tom Exp $
|
||
|
||
. ./setup-vars
|
||
|
||
. ./setup-tempfile
|
||
|
||
. ./setup-utf8
|
||
|
||
TITLE="あいうえお"
|
||
|
||
$DIALOG \
|
||
--title "$TITLE" "$@" \
|
||
--inputbox "$TITLE" 10 20 "D.O.G" 2>$tempfile
|
||
|
||
retval=$?
|
||
|
||
. ./report-tempfile
|