freebsd-dev/usr.bin/lam/lam.1

159 lines
4.3 KiB
Groff
Raw Normal View History

1994-05-27 12:33:43 +00: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-05-27 12:33:43 +00: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
1999-08-28 01:08:13 +00:00
.\" $FreeBSD$
1994-05-27 12:33:43 +00:00
.\"
.Dd April 7, 2015
.Dt LAM 1
.Os
.Sh NAME
.Nm lam
.Nd laminate files
.Sh SYNOPSIS
.Nm
.Op Fl f Ar min . Ns Ar max
.Op Fl s Ar sepstring
2001-07-15 08:06:20 +00:00
.Op Fl t Ar c
.Ar
.Nm
.Op Fl p Ar min . Ns Ar max
.Op Fl s Ar sepstring
2001-07-15 08:06:20 +00:00
.Op Fl t Ar c
.Ar
.Sh DESCRIPTION
2002-04-20 12:18:28 +00:00
The
.Nm
utility copies the named files side by side onto the standard output.
1994-05-27 12:33:43 +00:00
The
.Em n-th
1994-05-27 12:33:43 +00:00
input lines from the input
.Ar files
1994-05-27 12:33:43 +00:00
are considered fragments of the single long
.Em n-th
1994-05-27 12:33:43 +00:00
output line into which they are assembled.
The name `\fB\-\fP' means the standard input, and may be repeated.
.Pp
.Bl -tag -width indent
.It Fl f Ar min . Ns Ar max , Fl F Ar min . Ns Ar max
1994-05-27 12:33:43 +00:00
Print line fragments according to the format string
.Ar min . Ns Ar max ,
1994-05-27 12:33:43 +00:00
where
.Ar min
1994-05-27 12:33:43 +00:00
is the minimum field width and
.Ar max
1994-05-27 12:33:43 +00:00
the maximum field width.
If
.Ar min
1994-05-27 12:33:43 +00:00
begins with a zero, zeros will be added to make up the field width,
and if it begins with a `\-', the fragment will be left-adjusted
within the field.
Using
.Fl f
applies only to the next file while
.Fl F
applies to all subsequent files until it appears again uncapitalized.
.It Fl p Ar min . Ns Ar max , Fl P Ar min . Ns Ar max
Like
.Fl f ,
1994-05-27 12:33:43 +00:00
but pad this file's field when end-of-file is reached
and other files are still active.
Using
.Fl p
applies only to the next file while
.Fl P
applies to all subsequent files until it appears again uncapitalized.
.It Fl s Ar sepstring , Fl S Ar sepstring
1994-05-27 12:33:43 +00:00
Print
.Ar sepstring
1994-05-27 12:33:43 +00:00
before printing line fragments from the next file.
This option may appear after the last file.
Using
.Fl s
applies only to the next file while
.Fl S
applies to all subsequent files until it appears again uncapitalized.
.It Fl t Ar c , Fl T Ar c
1994-05-27 12:33:43 +00:00
The input line terminator is
.Ar c
1994-05-27 12:33:43 +00:00
instead of a newline.
The newline normally appended to each output line is omitted.
Using
.Fl t
applies only to the next file while
.Fl T
applies to all subsequent files until it appears again uncapitalized.
.El
.Pp
1994-05-27 12:33:43 +00:00
To print files simultaneously for easy viewing use
.Xr pr 1 .
.Sh EXAMPLES
1994-05-27 12:33:43 +00:00
The command
.Bd -literal
1994-05-27 12:33:43 +00:00
lam file1 file2 file3 file4
.Ed
2000-12-19 16:00:12 +00:00
.Pp
1994-05-27 12:33:43 +00:00
joins 4 files together along each line.
To merge the lines from four different files use
.Bd -literal
1994-05-27 12:33:43 +00:00
lam file1 \-S "\\
" file2 file3 file4
.Ed
2000-12-19 16:00:12 +00:00
.Pp
1994-05-27 12:33:43 +00:00
Every 2 lines of a file may be joined on one line with
.Bd -literal
1994-05-27 12:33:43 +00:00
lam \- \- < file
.Ed
2000-12-19 16:00:12 +00:00
.Pp
1994-05-27 12:33:43 +00:00
and a form letter with substitutions keyed by `@' can be done with
.Bd -literal
1994-05-27 12:33:43 +00:00
lam \-t @ letter changes
.Ed
.Sh SEE ALSO
.Xr join 1 ,
.Xr paste 1 ,
.Xr pr 1 ,
.Xr printf 3
.Sh STANDARDS
Some of the functionality of
.Nm
is standardized as the
.Xr paste 1
utility by
.St -p1003.2 .
.Sh HISTORY
The
.Nm
utility first appeared in
.Bx 4.2 .
.Sh AUTHORS
.An John A. Kunze
.Sh BUGS
The
.Nm
utility does not recognize multibyte characters.