]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/look/look.1
vm_page: Add a new page allocator interface for unnamed pages
[FreeBSD/FreeBSD.git] / usr.bin / look / look.1
1 .\" Copyright (c) 1990, 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 .\"     @(#)look.1      8.1 (Berkeley) 6/14/93
29 .\" $FreeBSD$
30 .\"
31 .Dd December 29, 2020
32 .Dt LOOK 1
33 .Os
34 .Sh NAME
35 .Nm look
36 .Nd display lines beginning with a given string
37 .Sh SYNOPSIS
38 .Nm
39 .Op Fl df
40 .Op Fl t Ar termchar
41 .Ar string
42 .Op Ar
43 .Sh DESCRIPTION
44 The
45 .Nm
46 utility displays any lines in
47 .Ar file
48 which contain
49 .Ar string
50 as a prefix.
51 As
52 .Nm
53 performs a binary search, the lines in
54 .Ar file
55 must be sorted.
56 .Pp
57 If
58 .Ar file
59 is not specified, the file
60 .Pa /usr/share/dict/words
61 is used, only alphanumeric characters are compared and the case of
62 alphabetic characters is ignored.
63 .Pp
64 The following options are available:
65 .Bl -tag -width indent
66 .It Fl d , -alphanum
67 Dictionary character set and order, i.e., only alphanumeric characters
68 are compared.
69 .It Fl f , -ignore-case
70 Ignore the case of alphabetic characters.
71 .It Fl t , -terminate Ar termchar
72 Specify a string termination character, i.e., only the characters
73 in
74 .Ar string
75 up to and including the first occurrence of
76 .Ar termchar
77 are compared.
78 .El
79 .Sh ENVIRONMENT
80 The
81 .Ev LANG , LC_ALL
82 and
83 .Ev LC_CTYPE
84 environment variables affect the execution of the
85 .Nm
86 utility.
87 Their effect is described in
88 .Xr environ 7 .
89 .Sh FILES
90 .Bl -tag -width /usr/share/dict/words -compact
91 .It Pa /usr/share/dict/words
92 the dictionary
93 .El
94 .Sh EXIT STATUS
95 The
96 .Nm
97 utility exits 0 if one or more lines were found and displayed,
98 1 if no lines were found, and >1 if an error occurred.
99 .Sh EXAMPLES
100 Look for lines starting with
101 .Ql xylene
102 in the file
103 .Pa /usr/share/dict/words :
104 .Bd -literal -offset indent
105 $ look xylen
106 xylene
107 xylenol
108 xylenyl
109 .Ed
110 .Pp
111 Same as above, but do not consider any characters in
112 .Ar string
113 beyond the first
114 .Ql e .
115 Note that
116 .Fl f
117 is implicit since we are searching the default file
118 .Pa /usr/share/dict/words :
119 .Bd -literal -offset indent
120 $ look -t e xylen
121 Xyleborus
122 xylem
123 xylene
124 xylenol
125 xylenyl
126 xyletic
127 .Ed
128 .Sh COMPATIBILITY
129 The original manual page stated that tabs and blank characters participated
130 in comparisons when the
131 .Fl d
132 option was specified.
133 This was incorrect and the current man page matches the historic
134 implementation.
135 .Pp
136 The
137 .Fl a
138 and
139 .Fl -alternative
140 flags are ignored for compatibility.
141 .Sh SEE ALSO
142 .Xr grep 1 ,
143 .Xr sort 1
144 .Sh HISTORY
145 A
146 .Nm
147 utility appeared in
148 .At v7 .
149 .Sh BUGS
150 Lines are not compared according to the current locale's collating
151 order.
152 Input files must be sorted with
153 .Ev LC_COLLATE
154 set to
155 .Ql C .