1COLUMN(1)                        User Commands                       COLUMN(1)
2
3
4

NAME

6       column - columnate lists
7

SYNOPSIS

9       column [options] file...
10

DESCRIPTION

12       The  column  utility formats its input into multiple columns.  Rows are
13       filled before columns.  Input is taken from file or, by  default,  from
14       standard input.  Empty lines are ignored.
15

OPTIONS

17       -c, --columns width
18              Output  is  formatted  to a width specified as number of characā€
19              ters.
20
21       -t, --table
22              Determine the number of columns the input contains and create  a
23              table.   Columns  are  delimited with whitespace, by default, or
24              with the characters supplied using the separator.  Table  output
25              is useful for pretty-printing.
26
27       -s, --separator separators
28              Specify possible table delimiters (default is whitespace).
29
30       -o, --output-separator separators
31              Specify table output delimiter (default is two whitespaces).
32
33       -x, --fillrows
34              Fill columns before filling rows.
35
36       -h, --help
37              Print help and exit.
38

ENVIRONMENT

40       The  environment  variable COLUMNS is used to determine the size of the
41       screen if no other information is available.
42

EXAMPLES

44       sed 's/#.*//' /etc/fstab | column -t
45

BUGS

47       The util-linux version 2.23 changed -s option  to  be  non-greedy,  for
48       example:
49
50       $ printf "a:b:c\n1::3\n" | column  -t -s ':'
51
52       old output:
53       a  b  c
54       1  3
55
56       new output (since util-linux 2.23)
57       a  b  c
58       1     3
59

SEE ALSO

61       colrm(1), ls(1), paste(1), sort(1)
62

HISTORY

64       The column command appeared in 4.3BSD-Reno.
65

AVAILABILITY

67       The  column  command is part of the util-linux package and is available
68       from ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
69
70
71
72util-linux                       October 2010                        COLUMN(1)
Impressum