]> git.ipfire.org Git - thirdparty/util-linux.git/blob - misc-utils/look.1
Merge branch 'chcpu' of git://git.kernel.org/pub/scm/linux/kernel/git/heiko/util...
[thirdparty/util-linux.git] / misc-utils / 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. All advertising materials mentioning features or use of this software
13 .\" must display the following acknowledgement:
14 .\" This product includes software developed by the University of
15 .\" California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\" @(#)look.1 8.1 (Berkeley) 6/14/93
33 .\"
34 .TH LOOK 1 "June 2011" "util-linux" "User Commands"
35 .SH NAME
36 look \- display lines beginning with a given string
37 .SH SYNOPSIS
38 .B look
39 .RI [ options ] " string " [ file ]
40 .SH DESCRIPTION
41 The
42 .B look
43 utility displays any lines in
44 .I file
45 which contain
46 .IR string .
47 As
48 .B look
49 performs a binary search, the lines in
50 .I file
51 must be sorted (where sort(1) got the same options
52 .BR "\-d " and/or " \-f " that
53 .B look
54 is invoked with).
55 .PP
56 If
57 .I file
58 is not specified, the file
59 .I /usr/share/dict/words
60 is used, only alphanumeric characters are compared and the case of
61 alphabetic characters is ignored.
62 .SH OPTIONS
63 .TP
64 .BR \-a , " \-\-alternative"
65 Use the alternative dictionary file.
66 .TP
67 .BR \-d , " \-\-alphanum"
68 Use normal dictionary character set and order, i.e. only alphanumeric characters
69 are compared. (This is on by default if no file is specified.)
70 .TP
71 .BR \-f , " \-\-ignore\-case"
72 Ignore the case of alphabetic characters. (This is on by default if no file is
73 specified.)
74 .TP
75 .BR \-t , " \-\-terminate " \fIcharacter\fR
76 Specify a string termination character, i.e. only the characters
77 in \fIstring\fR up to and including the first occurrence of \fIcharacter\fR
78 are compared.
79 .TP
80 .BR \-h , " \-\-help"
81 Display help text and exit.
82 .TP
83 .BR \-V , " \-\-version"
84 Output version information and exit.
85 .PP
86 The
87 .B look
88 utility exits 0 if one or more lines were found and displayed, 1 if
89 no lines were found, and >1 if an error occurred.
90 .SH EXAMPLE
91 .RS
92 .nf
93 sort -d /etc/passwd -o /tmp/look.dict
94 look -t: root:foobar /tmp/look.dict
95 .nf
96 .RE
97 .SH FILES
98 .IX Header "FILES"
99 .IP "\fB/usr/share/dict/words\fR" 4
100 the dictionary
101 .IP "\fB/usr/share/dict/web2\fR" 4
102 the alternative dictionary
103 .SH "SEE ALSO"
104 .BR grep (1),
105 .BR sort (1)
106 .SH COMPATIBILITY
107 The original manual page stated that tabs and blank characters participated
108 in comparisons when the alphanum option was specified. This was incorrect,
109 and the current man page matches the historic implementation.
110 .SH HISTORY
111 The
112 .B look
113 utility appeared in Version 7 AT&T Unix.
114 .SH AVAILABILITY
115 The look command is part of the util-linux package and is available from
116 ftp://ftp.kernel.org/pub/linux/utils/util-linux/.