1french-deconjugator(1)                                  french-deconjugator(1)
2
3
4

NAME

6       french-deconjugator - analyze conjugated French verbs
7

SYNOPSIS

9       echo aimé | french-deconjugator > result.txt
10

DESCRIPTION

12       french-deconjugator  reads  conjugated  French  verbs from its standard
13       input and writes (to standard output) the verb's infinitive  form,  the
14       mode  (infinitive,  indicative, conditional, subjunctive, imperative or
15       participle), the tense (present, past, imperfect, future),  the  person
16       (1, 2 or 3, while 0 is used for the present participle tense, and 4 and
17       5 are used in the past participle tense), and the number  (singular  or
18       plural).  These fields are separated by a comma and a space.
19
20       By convention, persons 4 and 5 are used in the past participle tense to
21       indicate the gender: 4 means masculine (e.g., "aimé" or "aimés") and  5
22       means feminine (e.g., "aimée" or "aimées").
23
24       A  single  conjugated  form can correspond to more than one mode, tense
25       and person.  In this case, each alternative is written on its own line.
26
27       In all cases, the end of the answer is marked by an empty line.  If the
28       word was unknown, only this empty line is written.
29
30       The  command  flushes  its  output  buffer after finishing each answer.
31       This allows the command  to  be  easily  called  from  another  program
32       through two pipes.
33
34       The command starts by loading its database from XML files (stored typi‐
35       cally in /usr/share/verbiste).  This takes some time, so it is  a  good
36       idea to have the command answer many requests instead of running it for
37       each request.
38
39       The verbiste library's source archive contains Perl  and  Java  example
40       programs that illustrate this technique.
41
42       This  commands  expects  to  read Latin-1 characters and writes Latin-1
43       characters.  There must not be any leading or trailing white spaces  on
44       the lines read by the command.
45

OPTIONS

47       --help, -h
48              display a help page and exit
49
50       --version, -v
51              display version information and exit
52

EXAMPLES

54       $ echo aimé | french-deconjugator
55       aimer, participle, past, 0, singular
56
57       $ echo -ne 'a\nplu\nété\n' | french-deconjugator
58       avoir, indicative, present, 3, singular
59
60       plaire, participle, past, 0, singular
61       pleuvoir, participle, past, 0, singular
62
63       être, participle, past, 0, singular
64
65

LICENSE

67       This  program is free software; you may redistribute it under the terms
68       of the GNU General Public License.  This program has absolutely no war‐
69       ranty.
70

AUTHOR

72       See the verbiste(3) manual page.
73

BUGS

75       See the verbiste(3) manual page.
76

SEE ALSO

78       verbiste(3), french-conjugator(1).
79
80
81
82                               March 11th, 2007         french-deconjugator(1)
Impressum