4.3BSD-Reno/src/usr.bin/expand/expand.1

Compare this file to the similar file:
Show the results in this format:

.\" Copyright (c) 1980, 1990 The Regents of the University of California.
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms are permitted provided
.\" that: (1) source distributions retain this entire copyright notice and
.\" comment, and (2) distributions including binaries display the following
.\" acknowledgement:  ``This product includes software developed by the
.\" University of California, Berkeley and its contributors'' in the
.\" documentation or other materials provided with the distribution and in
.\" all advertising materials mentioning features or use of this software.
.\" 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 ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
.\" WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
.\"
.\"     @(#)expand.1	6.5 (Berkeley) 7/24/90
.\"
.Dd July 24, 1990
.Dt EXPAND 1
.Os BSD 4
.Sh NAME
.Nm expand ,
.Nm unexpand
.Nd expand tabs to spaces, and vice versa
.Sh SYNOPSIS
.Nm expand
.Oo
.Op Fl Ar tabstop
.Op Fl Ar tab1,tab2,...,tabn
.Oo
.Ar
.Nm unexpand
.Op Fl a
.Ar
.Sh DESCRIPTION
.Nm Expand
processes the named files or the standard input writing
the standard output with tabs changed into blanks.
Backspace characters are preserved into the output and decrement
the column count for tab calculations.
.Nm Expand
is useful for pre-processing character files
(before sorting, looking at specific columns, etc.) that
contain tabs.
.Pp
If a single
.Ar tabstop
argument is given, then tabs are set
.Ar tabstop
spaces apart instead of the default 8.
If multiple tabstops are given then the tabs are set at those
specific columns.
.Pp
.Nm Unexpand
puts tabs back into the data from the standard input or the named
files and writes the result on the standard output.
.Pp
Option (with
.Nm unexpand
only):
.Tw Ds
.Tp Fl a
By default, only leading blanks and tabs
are reconverted to maximal strings of tabs.  If the
.Fl a
option is given, then tabs are inserted whenever they would compress the
resultant file by replacing two or more characters.
.Tp
.Sh HISTORY
.Nm Expand
appeared in 3 BSD.