1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
.TH TOMLJSON 1 "1 December 2016" "0.3.5"
.SH NAME
tomljson \- reads a TOML file and outputs its JSON representation
.SH SYNOPSIS
.B tomljson
.SH DESCRIPTION
This manual page documents briefly the
.B tomljson
command.
.PP
.B tomljson
is a program that reads a TOML file and outputs its JSON representation.
.B tomljson
can be used in two ways.
.IP
Writing to STDOUT and reading from STDIN:
cat file.toml | tomljson > file.json
.IP
Reading from a file name:
tomljson file.toml
.SH OPTIONS
These programs follow the usual GNU command line syntax, with long
options starting with two dashes (`-').
A summary of options is included below.
.TP
.B \-h, \-\-help
Show summary of options.
.SH SEE ALSO
.BR tomll (1).
.SH AUTHOR
This manpage was written by Dr. Tobias Quathamer <toddy@debian.org>.
|