DataMuseum.dk

Presents historical artifacts from the history of:

ICL Comet 32

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about ICL Comet 32

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦f445a4caa⟧ TextFile

    Length: 1212 (0x4bc)
    Types: TextFile
    Notes: UNIX file
    Names: »expand.1«

Derivation

└─⟦26887b7e0⟧ Bits:30009717 Comet 32 harddisk image
    └─⟦28c352965⟧ »/a« UNIX Filesystem
        └─⟦this⟧ »usr/man/man1/expand.1« 

TextFile

.ig
	@(#)expand.1	2.1	7/1/84
	@(#)Copyright (C) 1983 by National Semiconductor Corp.
..
.TH EXPAND 1
.UC 4
.SH NAME
expand, unexpand \- expand tabs to spaces, and vice versa
.SH SYNOPSIS
.B expand
[
\-tabstop
] [
\-tab1,tab2,...,tabn
] [
file ...
]
.br
.B unexpand
[
.B \-a
] [
file ...
]
.SH DESCRIPTION
.I 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.
.I Expand
is useful for pre-processing character files
(before sorting, looking at specific columns, etc.) that
contain tabs.
.PP
If a single
.I tabstop
argument is given then tabs are set
.I tabstop
spaces apart instead of the default 8.
If multiple tabstops are given then the tabs are set at those
specific columns.
.PP
.I Unexpand
puts tabs back into the data from the standard input or the named
files and writes the result on the standard output.
By default only leading blanks and tabs
are reconverted to maximal strings of tabs.  If the
.B \-a
option is given, then tabs are inserted whenever they would compress the
resultant file by replacing two or more characters.
.SH BUGS