doc
This commit is contained in:
parent
67426535ff
commit
b768c4a9a9
@ -11,11 +11,15 @@ recollindex \- indexing command for the Recoll full text search system
|
|||||||
<configdir>
|
<configdir>
|
||||||
]
|
]
|
||||||
[
|
[
|
||||||
.B \-z
|
.B \-z|\-Z
|
||||||
]
|
]
|
||||||
|
.br
|
||||||
|
.B recollindex
|
||||||
[
|
[
|
||||||
.B \-m
|
.B \-c
|
||||||
|
<configdir>
|
||||||
]
|
]
|
||||||
|
.B \-m
|
||||||
[
|
[
|
||||||
.B \-w
|
.B \-w
|
||||||
<seconds>
|
<seconds>
|
||||||
@ -26,6 +30,12 @@ recollindex \- indexing command for the Recoll full text search system
|
|||||||
[
|
[
|
||||||
.B \-x
|
.B \-x
|
||||||
]
|
]
|
||||||
|
[
|
||||||
|
.B \-C
|
||||||
|
]
|
||||||
|
[
|
||||||
|
.B \-n
|
||||||
|
]
|
||||||
.br
|
.br
|
||||||
.B recollindex
|
.B recollindex
|
||||||
[
|
[
|
||||||
@ -34,9 +44,26 @@ recollindex \- indexing command for the Recoll full text search system
|
|||||||
]
|
]
|
||||||
.B \-i
|
.B \-i
|
||||||
[
|
[
|
||||||
|
.B \-Z
|
||||||
|
]
|
||||||
|
[
|
||||||
.B \-f
|
.B \-f
|
||||||
]
|
]
|
||||||
[<filename [filename ...]>]
|
[<path [path ...]>]
|
||||||
|
.br
|
||||||
|
.B recollindex
|
||||||
|
[
|
||||||
|
.B \-c
|
||||||
|
<configdir>
|
||||||
|
]
|
||||||
|
.B \-r
|
||||||
|
[
|
||||||
|
.B \-Z
|
||||||
|
]
|
||||||
|
[
|
||||||
|
.B \-f
|
||||||
|
]
|
||||||
|
<dirpath>
|
||||||
.br
|
.br
|
||||||
.B recollindex
|
.B recollindex
|
||||||
[
|
[
|
||||||
@ -44,7 +71,7 @@ recollindex \- indexing command for the Recoll full text search system
|
|||||||
<configdir>
|
<configdir>
|
||||||
]
|
]
|
||||||
.B \-e
|
.B \-e
|
||||||
[<filename [filename ...]>]
|
[<path [path ...]>]
|
||||||
.br
|
.br
|
||||||
.B recollindex
|
.B recollindex
|
||||||
[
|
[
|
||||||
@ -87,7 +114,10 @@ file
|
|||||||
This will incrementally update the database with files that changed since
|
This will incrementally update the database with files that changed since
|
||||||
the last run. If option
|
the last run. If option
|
||||||
.B \-z
|
.B \-z
|
||||||
is given, the database will be erased before starting.
|
is given, the database will be erased before starting. If option
|
||||||
|
.B \-Z
|
||||||
|
is given, the database will not be reset, but all files will be considered
|
||||||
|
as needing reindexing (in place reset).
|
||||||
.PP
|
.PP
|
||||||
If option
|
If option
|
||||||
.B
|
.B
|
||||||
@ -110,10 +140,15 @@ Option
|
|||||||
\-x
|
\-x
|
||||||
disables this X11 session monitoring (daemon will stay alive even if it
|
disables this X11 session monitoring (daemon will stay alive even if it
|
||||||
cannot connect to the X11 server). You need to use this too if you use the
|
cannot connect to the X11 server). You need to use this too if you use the
|
||||||
daemon without an X11 context.
|
daemon without an X11 context. You can use option
|
||||||
.PP
|
.B
|
||||||
.B recollindex \-l
|
\-n
|
||||||
will list the names of available language stemmers.
|
to skip the initial incrementing pass which is normally performed before
|
||||||
|
monitoring starts. Once monitoring is started, the daemon normally monitors
|
||||||
|
the configuration and restarts from scratch if a change is made. You can
|
||||||
|
disable this with option
|
||||||
|
.B
|
||||||
|
\-C
|
||||||
.PP
|
.PP
|
||||||
.B recollindex \-i
|
.B recollindex \-i
|
||||||
will index individual files into the database. The stem expansion and
|
will index individual files into the database. The stem expansion and
|
||||||
@ -128,6 +163,7 @@ for which you would add the top directory to skippedPaths, and use any
|
|||||||
custom tool to generate the file list (ie: a tool from a source code
|
custom tool to generate the file list (ie: a tool from a source code
|
||||||
control system).
|
control system).
|
||||||
.PP
|
.PP
|
||||||
|
.PP
|
||||||
.B recollindex \-e
|
.B recollindex \-e
|
||||||
will erase data for individual files from the database. The stem expansion
|
will erase data for individual files from the database. The stem expansion
|
||||||
databases will not be updated.
|
databases will not be updated.
|
||||||
@ -148,7 +184,18 @@ find /path/to/dir \-print | recollindex \-i
|
|||||||
to force the reindexing of a directory tree (which has to exist inside the
|
to force the reindexing of a directory tree (which has to exist inside the
|
||||||
file system area defined by
|
file system area defined by
|
||||||
.I topdirs
|
.I topdirs
|
||||||
in recoll.conf).
|
in recoll.conf). You could mostly accomplish the same thing with
|
||||||
|
.PP
|
||||||
|
.B find /path/to/dir \-print | recollindex \-f \-Z
|
||||||
|
.PP
|
||||||
|
.B recollindex \-r
|
||||||
|
mostly works like -i, but the parameter is a single directory, which will
|
||||||
|
be recursively updated. This mostly does nothing more than
|
||||||
|
.B find topdir | recollindex -i
|
||||||
|
but it may be more convenient to use when started from another program.
|
||||||
|
.PP
|
||||||
|
.B recollindex \-l
|
||||||
|
will list the names of available language stemmers.
|
||||||
.PP
|
.PP
|
||||||
.B recollindex \-s
|
.B recollindex \-s
|
||||||
will build the stem expansion database for a given language, which may or
|
will build the stem expansion database for a given language, which may or
|
||||||
|
|||||||
@ -87,6 +87,14 @@
|
|||||||
<div class="news">
|
<div class="news">
|
||||||
|
|
||||||
<dl>
|
<dl>
|
||||||
|
<dt>2013-04-30</dt><dd>Recoll 1.19.0 will soon be out, and as
|
||||||
|
usual, there is a pre-release source tarfile for
|
||||||
|
adventurous souls who would be willing to test and
|
||||||
|
help the release to be as close to flawless as
|
||||||
|
possible. The <a href="betarecoll-3304.tar.gz">tar file</a> and the
|
||||||
|
the <a href="release-1.19.html">release notes</a>.
|
||||||
|
</dd>
|
||||||
|
|
||||||
<dt>2013-04-30</dt><dd>Thanks to some of its users, Recoll now
|
<dt>2013-04-30</dt><dd>Thanks to some of its users, Recoll now
|
||||||
has filters to
|
has filters to
|
||||||
<a href="http://sourceforge.net/projects/rcollnotesfiltr/">
|
<a href="http://sourceforge.net/projects/rcollnotesfiltr/">
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user