xref: /freebsd/contrib/bsddialog/examples_utility/mixedform.sh (revision 7be9a3b45356747f9fcb6d69a722c1c95f8060bf)
1#!/bin/sh
2#-
3# SPDX-License-Identifier: CC0-1.0
4#
5# Written in 2021 by Alfonso Sabato Siciliano.
6# To the extent possible under law, the author has dedicated all copyright
7# and related and neighboring rights to this software to the public domain
8# worldwide. This software is distributed without any warranty, see:
9#     <http://creativecommons.org/publicdomain/zero/1.0/>.
10
11./bsddialog --insecure --title " mixedform " --mixedform "Hello World!" 12 40 5 \
12	Label:    11  Entry      1  11  18  25  0 \
13	Label:    21  Read-Only  2  11  18  25  2 \
14	Password: 31  ""         3  11  18  25  1 \
15	2>out.txt ; cat out.txt ; rm out.txt
16