xref: /freebsd/contrib/bsddialog/examples_utility/mixedform.sh (revision f499134dd403eeeba8283e2640e2654c8da62430)
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:    1	1	Entry		1	11	18	25	0 \
13	Label:    2	1	Read-Only	2	11	18	25	2 \
14	Password: 3	1	Value2		3	11	18	25	1 \
15	2>out.txt ; cat out.txt ; rm out.txt
16