xref: /freebsd/contrib/dialog/samples/editbox3 (revision 00e84f52f0985e6b2fd73694aa5f4b50a5f957af)
1#!/bin/sh
2# $Id: editbox3,v 1.8 2020/11/26 00:03:58 tom Exp $
3# example with extra- and help-buttons
4
5. ./setup-vars
6
7. ./setup-edit
8
9cat << EOF > $input
10EOF
11
12$DIALOG --title "EDIT BOX" \
13	--extra-button \
14	--help-button \
15	--fixed-font "$@" --editbox $input 0 0 2>$output
16returncode=$?
17
18. ./report-edit
19