freebsd-src/contrib/dialog/samples/editbox3

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
304 B
Plaintext
Raw Normal View History

2011-01-13 02:21:23 +00:00
#!/bin/sh
# $Id: editbox3,v 1.8 2020/11/26 00:03:58 tom Exp $
2011-01-13 02:21:23 +00:00
# example with extra- and help-buttons
. ./setup-vars
. ./setup-edit
cat << EOF > $input
EOF
$DIALOG --title "EDIT BOX" \
--extra-button \
--help-button \
--fixed-font "$@" --editbox $input 0 0 2>$output
returncode=$?
2011-01-13 02:21:23 +00:00
. ./report-edit