1french-conjugator(1) french-conjugator(1)
2
3
4
6 french-conjugator - conjugate French verbs
7
9 echo aimer | french-conjugator > result.txt
10
12 french-conjugator reads the infinitive form of French verbs from its
13 standard input and writes (to standard output) the complete conjugation
14 of those verbs, if they are known.
15
16 Each mode and tense is introduced by a line that starts with a hyphen
17 and a space, and ends with a colon. The conjugation is ended with a
18 line that only contains a hyphen. If the given verb is unknown or not
19 in the infinitive form, only such a line is written.
20
21 The command flushes its output buffer after finishing each answer.
22 This allows the command to be easily called from another program
23 through two pipes.
24
25 The command starts by loading its database from XML files (stored typi‐
26 cally in /usr/share/verbiste). This takes some time, so it is a good
27 idea to have the command answer many requests instead of running it for
28 each request.
29
30 The verbiste library's source archive contains Perl and Java example
31 programs that illustrate this technique.
32
33 This commands expects to read Latin-1 characters and writes Latin-1
34 characters. There must not be any leading or trailing white spaces on
35 the lines read by the command.
36
37 In the past participle tense, four lines are written: they correspond
38 in order to the masculine singular, masculine plural, feminine singular
39 and feminine plural.
40
42 --help display a help page and exit
43
44 --version
45 display version information and exit
46
47 --mode=M
48 only display mode M, where M can be infinitive, indicative, con‐
49 ditional, subjunctive, imperative or participle
50
51 --tense=T
52 only display tense T, where T can be present, past, imperfect or
53 future
54
55 --pronouns
56 show the pronouns
57
58 --utf8 assume that the terminal uses the UTF-8 encoding instead of
59 Latin-1 (ISO-8859-1) -- try this option if Verbiste claims not
60 to know a verb that contains an accented character
61
63 $ echo aimer | french-conjugator
64 - infinitive present:
65 aimer
66 - indicative present:
67 aime
68 aimes
69 aime
70 aimons
71 aimez
72 aiment
73 - indicative imperfect:
74 aimais
75 aimait
76 [...]
77 - participle past:
78 aimé
79 aimés
80 aimée
81 aimées
82 -
83
85 This program is free software; you may redistribute it under the terms
86 of the GNU General Public License. This program has absolutely no war‐
87 ranty.
88
90 See the verbiste(3) manual page.
91
93 See the verbiste(3) manual page.
94
96 verbiste(3), french-deconjugator(1).
97
98
99
100 February 8th, 2009 french-conjugator(1)