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 display a help page and exit
48
49       --version
50              display version information and exit
51
52       --utf8 assume  that  the  terminal  uses  the UTF-8 encoding instead of
53              Latin-1 (ISO-8859-1) -- try this option if Verbiste  claims  not
54              to know a verb that contains an accented character
55

EXAMPLES

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

LICENSE

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

AUTHOR

75       See the verbiste(3) manual page.
76

BUGS

78       See the verbiste(3) manual page.
79

SEE ALSO

81       verbiste(3), french-conjugator(1).
82
83
84
85                              February 8th, 2009        french-deconjugator(1)
Impressum