xref: /freebsd/contrib/bsddialog/examples_utility/form.sh (revision 13ec1e3155c7e9bf037b12af186351b7fa9b9450)
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 --title " form " --form "Hello World!" 12 40 5 \
12	Label1:  1  1  Value1  1  9  18  25 \
13	Label2:  2  1  Value2  2  9  18  25 \
14	Label3:  3  1  Value3  3  9  18  25 \
15	Label4:  4  1  Value4  4  9  18  25 \
16	Label5:  5  1  Value5  5  9  18  25 \
17	2>out.txt ; cat out.txt ; rm out.txt
18
19
20