NetBSD/usr.bin/lam/lam.1

128 lines
3.7 KiB
Groff
Raw Normal View History

.\" $NetBSD: lam.1,v 1.5 2003/08/07 11:14:16 agc Exp $
.\"
1994-11-14 23:11:58 +03:00
.\" Copyright (c) 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
1994-11-14 23:11:58 +03:00
.\" 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.
.\"
.\" @(#)lam.1 8.1 (Berkeley) 6/6/93
.\"
2001-12-01 23:31:37 +03:00
.Dd December 1, 2001
.Dt LAM 1
.Os
.Sh NAME
.Nm lam
.Nd laminate files
.Sh SYNOPSIS
.Nm
.Op Fl f Ar min.max
.Op Fl p Ar min.max
.Op Fl s Ar sepstring
.Op Fl t Ar c
.Ar file ...
.Sh DESCRIPTION
.Nm
1994-11-14 23:11:58 +03:00
copies the named files side by side onto the standard output.
The
2001-12-01 23:31:37 +03:00
.Em n Ns -th
1994-11-14 23:11:58 +03:00
input lines from the input
2001-12-01 23:31:37 +03:00
.Ar files
1994-11-14 23:11:58 +03:00
are considered fragments of the single long
2001-12-01 23:31:37 +03:00
.Em n Ns -th
1994-11-14 23:11:58 +03:00
output line into which they are assembled.
2001-12-01 23:31:37 +03:00
The name
.Dq \&-
means the standard input, and may be repeated.
.Pp
1994-11-14 23:11:58 +03:00
Normally, each option affects only the
2001-12-01 23:31:37 +03:00
.Ar file
1994-11-14 23:11:58 +03:00
after it.
If the option letter is capitalized it affects all subsequent files
until it appears again uncapitalized.
The options are described below.
2001-12-01 23:31:37 +03:00
.Bl -tag -width "-s sepstring" -compact
.It Fl f Ar min.max
1994-11-14 23:11:58 +03:00
Print line fragments according to the format string
2001-12-01 23:31:37 +03:00
.Ar min.max ,
1994-11-14 23:11:58 +03:00
where
2001-12-01 23:31:37 +03:00
.Ar min
1994-11-14 23:11:58 +03:00
is the minimum field width and
2001-12-01 23:31:37 +03:00
.Ar max
1994-11-14 23:11:58 +03:00
the maximum field width.
If
2001-12-01 23:31:37 +03:00
.Ar min
1994-11-14 23:11:58 +03:00
begins with a zero, zeros will be added to make up the field width,
2001-12-01 23:31:37 +03:00
and if it begins with a
.Sq \&- ,
the fragment will be left-adjusted
1994-11-14 23:11:58 +03:00
within the field.
2001-12-01 23:31:37 +03:00
.It Fl p Ar min.max
Like
.Fl f ,
1994-11-14 23:11:58 +03:00
but pad this file's field when end-of-file is reached
and other files are still active.
2001-12-01 23:31:37 +03:00
.It Fl s Ar sepstring
1994-11-14 23:11:58 +03:00
Print
2001-12-01 23:31:37 +03:00
.Ar sepstring
1994-11-14 23:11:58 +03:00
before printing line fragments from the next file.
This option may appear after the last file.
2001-12-01 23:31:37 +03:00
.It Fl t Ar c
1994-11-14 23:11:58 +03:00
The input line terminator is
2001-12-01 23:31:37 +03:00
.Ar c
1994-11-14 23:11:58 +03:00
instead of a newline.
The newline normally appended to each output line is omitted.
2001-12-01 23:31:37 +03:00
.El
.Pp
1994-11-14 23:11:58 +03:00
To print files simultaneously for easy viewing use
2001-12-01 23:31:37 +03:00
.Xr pr 1 .
.Sh EXAMPLES
1994-11-14 23:11:58 +03:00
The command
2001-12-01 23:31:37 +03:00
.Bd -literal -offset indent
1994-11-14 23:11:58 +03:00
lam file1 file2 file3 file4
2001-12-01 23:31:37 +03:00
.Ed
.Pp
1994-11-14 23:11:58 +03:00
joins 4 files together along each line.
To merge the lines from four different files use
2001-12-01 23:31:37 +03:00
.Bd -literal -offset indent
1994-11-14 23:11:58 +03:00
lam file1 \-S "\\
" file2 file3 file4
2001-12-01 23:31:37 +03:00
.Ed
.Pp
1994-11-14 23:11:58 +03:00
Every 2 lines of a file may be joined on one line with
2001-12-01 23:31:37 +03:00
.Bd -literal -offset indent
lam \- \- \*[Lt] file
2001-12-01 23:31:37 +03:00
.Ed
.Pp
and a form letter with substitutions keyed by
.Sq \&@
can be done with
.Bd -literal -offset indent
1994-11-14 23:11:58 +03:00
lam \-t @ letter changes
2001-12-01 23:31:37 +03:00
.Ed
.Sh SEE ALSO
.Xr join 1 ,
.Xr pr 1 ,
.Xr printf 3