]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - usr.bin/look/look.1
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.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 .\" 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 .\"     @(#)look.1      8.1 (Berkeley) 6/14/93
29 .\" $FreeBSD$
30 .\"
31 .Dd July 17, 2004
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
67 Dictionary character set and order, i.e., only alphanumeric characters
68 are compared.
69 .It Fl f
70 Ignore the case of alphabetic characters.
71 .It Fl t
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 COMPATIBILITY
100 The original manual page stated that tabs and blank characters participated
101 in comparisons when the
102 .Fl d
103 option was specified.
104 This was incorrect and the current man page matches the historic
105 implementation.
106 .Sh SEE ALSO
107 .Xr grep 1 ,
108 .Xr sort 1
109 .Sh HISTORY
110 A
111 .Nm
112 utility appeared in
113 .At v7 .
114 .Sh BUGS
115 Lines are not compared according to the current locale's collating
116 order.
117 Input files must be sorted with
118 .Ev LC_COLLATE
119 set to
120 .Ql C .