cc2d762798
If that fails, fallback to 65 characters as before. If the -c option is specified then just use that.
36 lines
882 B
Groff
36 lines
882 B
Groff
.TH MC 1 sbase\-VERSION
|
|
.SH NAME
|
|
mc \- multi-column
|
|
.SH SYNOPSIS
|
|
.B mc
|
|
.RB [ \-c
|
|
.IR chars ]
|
|
.RI [ file ...]
|
|
.SH DESCRIPTION
|
|
.B mc
|
|
reads each file in sequence and writes them to stdout,
|
|
in as many vertical columns as will fit in
|
|
.I chars
|
|
character columns.
|
|
If no file is given, mc reads from stdin.
|
|
.SH OPTIONS
|
|
.TP
|
|
.BI \-c " chars"
|
|
specifies the maximum number of character columns to use
|
|
(unless the input contains lines longer than
|
|
.I chars
|
|
characters). By default mc tries to figure out the width
|
|
of the output device, if that fails it defaults to 65
|
|
chars.
|
|
.SH BUGS
|
|
This implementation of
|
|
.B mc
|
|
assumes that every byte is a character
|
|
which takes up one column on the screen.
|
|
It does not handle non-ASCII UTF-8 runes
|
|
or TAB characters correctly.
|
|
.B mc
|
|
currently mangles files which contain embedded NULs.
|
|
.B mc
|
|
does not allow the user to set a default width in its environment.
|