]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/lam/lam.1
Add two missing eventhandler.h headers
[FreeBSD/FreeBSD.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 .\" 3. 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 April 7, 2015
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 .Bl -tag -width indent
62 .It Fl f Ar min . Ns Ar max , Fl F Ar min . Ns Ar max
63 Print line fragments according to the format string
64 .Ar min . Ns Ar max ,
65 where
66 .Ar min
67 is the minimum field width and
68 .Ar max
69 the maximum field width.
70 If
71 .Ar min
72 begins with a zero, zeros will be added to make up the field width,
73 and if it begins with a `\-', the fragment will be left-adjusted
74 within the field.
75 Using
76 .Fl f
77 applies only to the next file while
78 .Fl F
79 applies to all subsequent files until it appears again uncapitalized.
80 .It Fl p Ar min . Ns Ar max , Fl P Ar min . Ns Ar max
81 Like
82 .Fl f ,
83 but pad this file's field when end-of-file is reached
84 and other files are still active.
85 Using
86 .Fl p
87 applies only to the next file while
88 .Fl P
89 applies to all subsequent files until it appears again uncapitalized.
90 .It Fl s Ar sepstring , Fl S Ar sepstring
91 Print
92 .Ar sepstring
93 before printing line fragments from the next file.
94 This option may appear after the last file.
95 Using
96 .Fl s
97 applies only to the next file while
98 .Fl S
99 applies to all subsequent files until it appears again uncapitalized.
100 .It Fl t Ar c , Fl T Ar c
101 The input line terminator is
102 .Ar c
103 instead of a newline.
104 The newline normally appended to each output line is omitted.
105 Using
106 .Fl t
107 applies only to the next file while
108 .Fl T
109 applies to all subsequent files until it appears again uncapitalized.
110 .El
111 .Pp
112 To print files simultaneously for easy viewing use
113 .Xr pr 1 .
114 .Sh EXAMPLES
115 The command
116 .Bd -literal
117 lam file1 file2 file3 file4
118 .Ed
119 .Pp
120 joins 4 files together along each line.
121 To merge the lines from four different files use
122 .Bd -literal
123 lam file1 \-S "\\
124 " file2 file3 file4
125 .Ed
126 .Pp
127 Every 2 lines of a file may be joined on one line with
128 .Bd -literal
129 lam \- \- < file
130 .Ed
131 .Pp
132 and a form letter with substitutions keyed by `@' can be done with
133 .Bd -literal
134 lam \-t @ letter changes
135 .Ed
136 .Sh SEE ALSO
137 .Xr join 1 ,
138 .Xr paste 1 ,
139 .Xr pr 1 ,
140 .Xr printf 3
141 .Sh STANDARDS
142 Some of the functionality of
143 .Nm
144 is standardized as the
145 .Xr paste 1
146 utility by
147 .St -p1003.2 .
148 .Sh HISTORY
149 The
150 .Nm
151 utility first appeared in
152 .Bx 4.2 .
153 .Sh AUTHORS
154 .An John A. Kunze
155 .Sh BUGS
156 The
157 .Nm
158 utility does not recognize multibyte characters.