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, -h
43 display a help page and exit
44
45 --version, -v
46 display version information and exit
47
48 --mode=M, -m M
49 only display mode M, where M can be infinitive, indicative, con‐
50 ditional, subjunctive, imperative or participle
51
52 --tense=T, -t T
53 only display tense T, where T can be present, past, imperfect or
54 future
55
56 --pronouns, -p
57 show the pronouns
58
60 $ echo aimer | french-conjugator
61 - infinitive present:
62 aimer
63 - indicative present:
64 aime
65 aimes
66 aime
67 aimons
68 aimez
69 aiment
70 - indicative imperfect:
71 aimais
72 aimait
73 [...]
74 - participle past:
75 aimé
76 aimés
77 aimée
78 aimées
79 -
80
82 This program is free software; you may redistribute it under the terms
83 of the GNU General Public License. This program has absolutely no war‐
84 ranty.
85
87 See the verbiste(3) manual page.
88
90 See the verbiste(3) manual page.
91
93 verbiste(3), french-deconjugator(1).
94
95
96
97 March 11th, 2007 french-conjugator(1)