# *********************************************************************
#  Written by and copyright Carlo Strozzi <carlos@linux.it>.
#
#  maketable.txt: help text
#  Copyright (C) 2001 Carlo Strozzi <carlos@linux.it>
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program; if not, write to the Free Software
#  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# *********************************************************************

                      NoSQL operator: maketable

Builds a valid table header from a template file.

Usage: maketable [options]

Options:
    --input (-i) 'file'
      Read input from 'file' instead of STDIN.

    --output (-o) 'file'
      Write output to 'file' instead of STDOUT.

    --help (-h)
      Display this help text.

    --names-only (-n)
      Suppress dashline from output.

Notes:

Takes a template file on stdin and prints the corresponding table
header to stdout. A template file is very similar to a 'list' file,
except that it only contains column names without the associated
values. Each column name may optionally be preceeded by its positional
number in the table header. For example:

##################################################
# Optional table comments
##################################################
1  Name1     Any comments ...
2  Name2     Any comments ...
3  Name3     Any comments ...
...

Field numbers are optional, and if they are present they must be
separated from the column names by blanks or tabs.
Column documentation comments are optional, and must be separated
from the column name by blanks or tabs.
Warning: if the input list contains duplicated entries, i.e. multiple
rows with the same label (column name), the resulting table may
be broken.

$Id$
