Blame


1 e2b5610c 2022-04-11 op .\" Copyright (c) 2022 Omar Polo <op@openbsd.org>
2 e2b5610c 2022-04-11 op .\"
3 e2b5610c 2022-04-11 op .\" Permission to use, copy, modify, and distribute this software for any
4 e2b5610c 2022-04-11 op .\" purpose with or without fee is hereby granted, provided that the above
5 e2b5610c 2022-04-11 op .\" copyright notice and this permission notice appear in all copies.
6 e2b5610c 2022-04-11 op .\"
7 e2b5610c 2022-04-11 op .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 e2b5610c 2022-04-11 op .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 e2b5610c 2022-04-11 op .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10 e2b5610c 2022-04-11 op .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 e2b5610c 2022-04-11 op .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12 e2b5610c 2022-04-11 op .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
13 e2b5610c 2022-04-11 op .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14 e2b5610c 2022-04-11 op .Dd April 11, 2022
15 e2b5610c 2022-04-11 op .Dt FTSEARCH 1
16 e2b5610c 2022-04-11 op .Os
17 e2b5610c 2022-04-11 op .Sh NAME
18 e2b5610c 2022-04-11 op .Nm ftsearch
19 e2b5610c 2022-04-11 op .Nd search strings quickly
20 e2b5610c 2022-04-11 op .Sh SYNOPSIS
21 e2b5610c 2022-04-11 op .Nm
22 e2b5610c 2022-04-11 op .Bk -words
23 e2b5610c 2022-04-11 op .Op Fl d Ar dbpath
24 e2b5610c 2022-04-11 op .Op Fl l
25 e2b5610c 2022-04-11 op .Op Fl s
26 e2b5610c 2022-04-11 op .Op Ar query
27 e2b5610c 2022-04-11 op .Ek
28 e2b5610c 2022-04-11 op .Sh DESCRIPTION
29 e2b5610c 2022-04-11 op The
30 e2b5610c 2022-04-11 op .Nm
31 e2b5610c 2022-04-11 op utility searches a database for all documents which match the given
32 e2b5610c 2022-04-11 op .Ar query .
33 e2b5610c 2022-04-11 op The database needs to be created beforehand with
34 e2b5610c 2022-04-11 op .Xr mkftsidx 1 .
35 e2b5610c 2022-04-11 op .Pp
36 e2b5610c 2022-04-11 op The arguments are as follows
37 e2b5610c 2022-04-11 op .Bl -tag -width 9m
38 e2b5610c 2022-04-11 op .It Fl d Ar dbpath
39 e2b5610c 2022-04-11 op Path to the database.
40 e2b5610c 2022-04-11 op .Pa db
41 e2b5610c 2022-04-11 op by default.
42 e2b5610c 2022-04-11 op .It Fl l
43 e2b5610c 2022-04-11 op List all known documents.
44 e2b5610c 2022-04-11 op Conflicts with
45 e2b5610c 2022-04-11 op .Fl s
46 e2b5610c 2022-04-11 op and
47 e2b5610c 2022-04-11 op .Ar query .
48 e2b5610c 2022-04-11 op .It Fl s
49 e2b5610c 2022-04-11 op Print database stats.
50 e2b5610c 2022-04-11 op Conflicts with
51 e2b5610c 2022-04-11 op .Fl l
52 e2b5610c 2022-04-11 op and
53 e2b5610c 2022-04-11 op .Ar query .
54 e2b5610c 2022-04-11 op .It Ar query
55 e2b5610c 2022-04-11 op The query to search for.
56 e2b5610c 2022-04-11 op .El
57 e2b5610c 2022-04-11 op .Sh EXAMPLES
58 e2b5610c 2022-04-11 op Search document that match
59 e2b5610c 2022-04-11 op .Dq file manager
60 e2b5610c 2022-04-11 op .Bd -literal -offset indent
61 e2b5610c 2022-04-11 op $ ftsearch 'file manager'
62 e2b5610c 2022-04-11 op .Ed
63 e2b5610c 2022-04-11 op .Sh SEE ALSO
64 e2b5610c 2022-04-11 op .Xr mkftsidx 1
65 e2b5610c 2022-04-11 op .Sh AUTHORS
66 e2b5610c 2022-04-11 op .An -nosplit
67 e2b5610c 2022-04-11 op The
68 e2b5610c 2022-04-11 op .Nm
69 e2b5610c 2022-04-11 op program was written by
70 e2b5610c 2022-04-11 op .An Omar Polo Aq Mt op@omarpolo.com .