dtrace: Address KMSAN warnings in dtrace_disx86
[freebsd/src.git] / usr.bin / lam / lam.1
blobcf1af65b2f14ca62ef925e6fc46d6f45d3487979
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 .Dd April 7, 2015
29 .Dt LAM 1
30 .Os
31 .Sh NAME
32 .Nm lam
33 .Nd laminate files
34 .Sh SYNOPSIS
35 .Nm
36 .Op Fl f Ar min . Ns Ar max
37 .Op Fl s Ar sepstring
38 .Op Fl t Ar c
39 .Ar
40 .Nm
41 .Op Fl p Ar min . Ns Ar max
42 .Op Fl s Ar sepstring
43 .Op Fl t Ar c
44 .Ar
45 .Sh DESCRIPTION
46 The
47 .Nm
48 utility copies the named files side by side onto the standard output.
49 The
50 .Em n-th
51 input lines from the input
52 .Ar files
53 are considered fragments of the single long
54 .Em n-th
55 output line into which they are assembled.
56 The name `\fB\-\fP' means the standard input, and may be repeated.
57 .Pp
58 .Bl -tag -width indent
59 .It Fl f Ar min . Ns Ar max , Fl F Ar min . Ns Ar max
60 Print line fragments according to the format string
61 .Ar min . Ns Ar max ,
62 where
63 .Ar min
64 is the minimum field width and
65 .Ar max
66 the maximum field width.
68 .Ar min
69 begins with a zero, zeros will be added to make up the field width,
70 and if it begins with a `\-', the fragment will be left-adjusted
71 within the field.
72 Using
73 .Fl f
74 applies only to the next file while
75 .Fl F
76 applies to all subsequent files until it appears again uncapitalized.
77 .It Fl p Ar min . Ns Ar max , Fl P Ar min . Ns Ar max
78 Like
79 .Fl f ,
80 but pad this file's field when end-of-file is reached
81 and other files are still active.
82 Using
83 .Fl p
84 applies only to the next file while
85 .Fl P
86 applies to all subsequent files until it appears again uncapitalized.
87 .It Fl s Ar sepstring , Fl S Ar sepstring
88 Print
89 .Ar sepstring
90 before printing line fragments from the next file.
91 This option may appear after the last file.
92 Using
93 .Fl s
94 applies only to the next file while
95 .Fl S
96 applies to all subsequent files until it appears again uncapitalized.
97 .It Fl t Ar c , Fl T Ar c
98 The input line terminator is
99 .Ar c
100 instead of a newline.
101 The newline normally appended to each output line is omitted.
102 Using
103 .Fl t
104 applies only to the next file while
105 .Fl T
106 applies to all subsequent files until it appears again uncapitalized.
109 To print files simultaneously for easy viewing use
110 .Xr pr 1 .
111 .Sh EXAMPLES
112 The command
113 .Bd -literal
114 lam file1 file2 file3 file4
117 joins 4 files together along each line.
118 To merge the lines from four different files use
119 .Bd -literal
120 lam file1 \-S "\\
121 " file2 file3 file4
124 Every 2 lines of a file may be joined on one line with
125 .Bd -literal
126 lam \- \- < file
129 and a form letter with substitutions keyed by `@' can be done with
130 .Bd -literal
131 lam \-t @ letter changes
133 .Sh SEE ALSO
134 .Xr join 1 ,
135 .Xr paste 1 ,
136 .Xr pr 1 ,
137 .Xr printf 3
138 .Sh STANDARDS
139 Some of the functionality of
141 is standardized as the
142 .Xr paste 1
143 utility by
144 .St -p1003.2 .
145 .Sh HISTORY
148 utility first appeared in
149 .Bx 4.2 .
150 .Sh AUTHORS
151 .An John A. Kunze
152 .Sh BUGS
155 utility does not recognize multibyte characters.