]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - usr.bin/lam/lam.1
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / usr.bin / lam / lam.1
1 .\" Copyright (c) 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 4. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)lam.1       8.1 (Berkeley) 6/6/93
29 .\" $FreeBSD$
30 .\"
31 .Dd August 12, 2004
32 .Dt LAM 1
33 .Os
34 .Sh NAME
35 .Nm lam
36 .Nd laminate files
37 .Sh SYNOPSIS
38 .Nm
39 .Op Fl f Ar min . Ns Ar max
40 .Op Fl s Ar sepstring
41 .Op Fl t Ar c
42 .Ar
43 .Nm
44 .Op Fl p Ar min . Ns Ar max
45 .Op Fl s Ar sepstring
46 .Op Fl t Ar c
47 .Ar
48 .Sh DESCRIPTION
49 The
50 .Nm
51 utility copies the named files side by side onto the standard output.
52 The
53 .Em n-th
54 input lines from the input
55 .Ar files
56 are considered fragments of the single long
57 .Em n-th
58 output line into which they are assembled.
59 The name `\fB\-\fP' means the standard input, and may be repeated.
60 .Pp
61 Normally, each option affects only the
62 .Ar file
63 after it.
64 If the option letter is capitalized it affects all subsequent files
65 until it appears again uncapitalized.
66 The options are described below:
67 .Bl -tag -width indent
68 .It Fl f Ar min . Ns Ar max
69 Print line fragments according to the format string
70 .Ar min . Ns Ar max ,
71 where
72 .Ar min
73 is the minimum field width and
74 .Ar max
75 the maximum field width.
76 If
77 .Ar min
78 begins with a zero, zeros will be added to make up the field width,
79 and if it begins with a `\-', the fragment will be left-adjusted
80 within the field.
81 .It Fl p Ar min . Ns Ar max
82 Like
83 .Fl f ,
84 but pad this file's field when end-of-file is reached
85 and other files are still active.
86 .It Fl s Ar sepstring
87 Print
88 .Ar sepstring
89 before printing line fragments from the next file.
90 This option may appear after the last file.
91 .It Fl t Ar c
92 The input line terminator is
93 .Ar c
94 instead of a newline.
95 The newline normally appended to each output line is omitted.
96 .El
97 .Pp
98 To print files simultaneously for easy viewing use
99 .Xr pr 1 .
100 .Sh EXAMPLES
101 The command
102 .Bd -literal
103 lam file1 file2 file3 file4
104 .Ed
105 .Pp
106 joins 4 files together along each line.
107 To merge the lines from four different files use
108 .Bd -literal
109 lam file1 \-S "\\
110 " file2 file3 file4
111 .Ed
112 .Pp
113 Every 2 lines of a file may be joined on one line with
114 .Bd -literal
115 lam \- \- < file
116 .Ed
117 .Pp
118 and a form letter with substitutions keyed by `@' can be done with
119 .Bd -literal
120 lam \-t @ letter changes
121 .Ed
122 .Sh SEE ALSO
123 .Xr join 1 ,
124 .Xr paste 1 ,
125 .Xr pr 1 ,
126 .Xr printf 3
127 .Sh STANDARDS
128 Some of the functionality of
129 .Nm
130 is standardized as the
131 .Xr paste 1
132 utility by
133 .St -p1003.2 .
134 .Sh HISTORY
135 The
136 .Nm
137 utility first appeared in
138 .Bx 4.2 .
139 .Sh BUGS
140 The
141 .Nm
142 utility does not recognize multibyte characters.