dbcolcreate (1) Linux Manual Page
NAME
dbcolcreate – create new columns
SYNOPSIS
dbcolcreate NewColumn1 [NewColumn2]
or
dbcolcreate -e DefaultValue NewColumnWithDefault
DESCRIPTION
Create columns "NewColumn1", etc. with an optional "DefaultValue".
OPTIONS
-eEmptyValue or–empty- Specify the value newly created columns get.
-for–first- Put all new columns as the first columns of each row. By default, they go at the end of each row.
–no-recreate-fatal- By default, creating an existing column is an error. With
–no-recreate-fatal, we ignore re-creation.
This module also supports the standard fsdb options:
-d- Enable debugging output.
-ior–inputInputSource- Read from InputSource, typically a file name, or "-" for standard input, or (if in Perl) a IO::Handle, Fsdb::IO or Fsdb::BoundedQueue objects.
-oor–outputOutputDestination- Write to OutputDestination, typically a file name, or "-" for standard output, or (if in Perl) a IO::Handle, Fsdb::IO or Fsdb::BoundedQueue objects.
–autorunor–noautorun- By default, programs process automatically, but Fsdb::Filter objects in Perl do not run until you invoke the run() method. The "--(no)autorun" option controls that behavior within Perl.
–help- Show help.
–man- Show full manual.
SAMPLE USAGE
Input:
#fsdb test
a
b
Command:
cat data.fsdb | dbcolcreate foo
Output:
#fsdb test foo
a -
b -
SEE ALSO
Fsdb.
AUTHOR and COPYRIGHT
Copyright (C) 1991-2015 by John Heidemann <johnh [at] isi.edu>
This program is distributed under terms of the GNU general public license, version 2. See the file COPYING with the distribution for details.
