[BACK]Return to column.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / column

File: [local] / src / usr.bin / column / column.1 (download)

Revision 1.17, Fri Oct 21 07:42:17 2016 UTC (7 years, 7 months ago) by schwarze
Branch: MAIN
Changes since 1.16: +32 -11 lines

Add missing information about the handling of input, output, and
character encoding, clarify the description of table mode, and say
that columns are filled before rows by default.
Feedback an OK jmc@, OK martijn@.

.\"	$OpenBSD: column.1,v 1.17 2016/10/21 07:42:17 schwarze Exp $
.\"	$NetBSD: column.1,v 1.3 1995/03/26 09:08:28 glass Exp $
.\"
.\" Copyright (c) 1989, 1990, 1993
.\"	The Regents of the University of California.  All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\"    notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\"    notice, this list of conditions and the following disclaimer in the
.\"    documentation and/or other materials provided with the distribution.
.\" 3. Neither the name of the University nor the names of its contributors
.\"    may be used to endorse or promote products derived from this software
.\"    without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.\"     @(#)column.1	8.1 (Berkeley) 6/6/93
.\"
.Dd $Mdocdate: October 21 2016 $
.Dt COLUMN 1
.Os
.Sh NAME
.Nm column
.Nd columnate lists
.Sh SYNOPSIS
.Nm column
.Op Fl tx
.Op Fl c Ar columns
.Op Fl s Ar sep
.Op Ar
.Sh DESCRIPTION
The
.Nm
utility formats its input into multiple columns.
Each input line provides the text for one output cell.
Columns are filled before rows.
.Pp
The column width is determined by the longest input line rounded
up to the nearest tabstop; tabstops are assumed to be at multiples
of eight.
Output uses tab characters to advance to the next column.
The number of columns is chosen to fill the terminal width.
.Pp
Input is taken from
.Ar file
operands or, by default, from the standard input.
Empty lines and lines containing only whitespace are ignored.
.Pp
The options are as follows:
.Bl -tag -width Ds
.It Fl c Ar columns
Output is formatted for a display
.Ar columns
wide.
.It Fl s Ar sep
Specify a set of characters to delimit columns for the
.Fl t
option.
It defaults to space and tab.
.It Fl t
Table mode.
Each input line provides the text for one output row.
It is split into cells using the
.Fl s
option.
Leading, trailing, and multiple adjacent delimiters are ignored.
Each column is as wide as the widest cell in it.
Columns are separated by two spaces.
.It Fl x
Fill rows before filling columns.
.El
.Sh ENVIRONMENT
.Bl -tag -width LC_CTYPE
.It Ev COLUMNS
If set to a positive integer,
output is formatted to the given width in display columns.
Otherwise,
.Nm
defaults to the terminal width, or 80 columns if the output is not a terminal.
.It Ev LC_CTYPE
The character encoding
.Xr locale 1 .
It decides which byte sequences form characters, what their display
width is, and which characters are whitespace.
If unset or set to
.Qq C ,
.Qq POSIX ,
or an unsupported value, each byte except the tab is treated as a
character of display width 1.
.El
.Sh EXIT STATUS
.Ex -std column
.Sh EXAMPLES
List the current working directory's contents, in detail,
with nicely formatted headings for each of the fields:
.Bd -literal -offset 4n
$ (echo "PERM LINKS OWNER GROUP SIZE MONTH DAY HH:MM/YEAR NAME" ; \e
	ls -l | sed 1d) | column -t
.Ed
.Sh SEE ALSO
.Xr colrm 1 ,
.Xr ls 1 ,
.Xr paste 1 ,
.Xr sort 1
.Sh HISTORY
The
.Nm
command appeared in
.Bx 4.3 Reno .