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 the
13 command line or from standard input and writes (to standard output) the
14 complete conjugation of those verbs, if they are known.
15
16 The standard input is not read if verbs are passed as command-line
17 arguments.
18
19 Each mode and tense is introduced by a line that starts with a hyphen
20 and a space, and ends with a colon. The mode and tense in that line
21 are always in English, regardless of the user's current locale. (This
22 is meant to facilitate automatic parsing of the output. For a French
23 user interface, see the GNOME application and applet.) The conjugation
24 is ended with a line that only contains a hyphen. If the given verb is
25 unknown or not in the infinitive form, only this line is written.
26
27 The command flushes its output buffer after finishing each answer.
28 This allows the command to be easily called from another program
29 through two pipes.
30
31 The command starts by loading its database from XML files (stored typi‐
32 cally in /usr/share/verbiste-0.1). This takes some time, so it is a
33 good idea to have the command answer many requests instead of running
34 it for each request.
35
36 The verbiste library's source archive contains Perl and Java example
37 programs that illustrate this technique.
38
39 There must not be any leading or trailing white spaces on the lines
40 read by the command.
41
42 In the past participle tense, four lines are written: they correspond
43 in order to the masculine singular, masculine plural, feminine singular
44 and feminine plural.
45
47 --help display a help page and exit
48
49 --version
50 display version information and exit
51
52 --lang=L
53 select the language to use (fr for French or it for Italian);
54 French is the default language
55
56 --mode=M
57 only display mode M, where M can be infinitive, indicative, con‐
58 ditional, subjunctive, imperative or participle (M can also be a
59 comma-separated list of modes)
60
61 --tense=T
62 only display tense T, where T can be present, past, imperfect or
63 future (T can also be a comma-separated list of tenses)
64
65 --pronouns
66 show the pronouns
67
68 --all-infinitives
69 print the infinitive form of all the verbs in the knowledge
70 base, one per line, unsorted; other command-line arguments are
71 ignored
72
73 --data-dir=D
74 Get the XML data files from directory D instead of the default
75 one.
76
78 $ french-conjugator aimer
79 - infinitive present:
80 aimer
81 - indicative present:
82 aime
83 aimes
84 aime
85 aimons
86 aimez
87 aiment
88 - indicative imperfect:
89 aimais
90 aimais
91 aimait
92 [...]
93 - participle past:
94 aimé
95 aimés
96 aimée
97 aimées
98 -
99
101 This program is free software; you may redistribute it under the terms
102 of the GNU General Public License. This program has absolutely no war‐
103 ranty.
104
106 See the verbiste(3) manual page.
107
109 See the verbiste(3) manual page.
110
112 verbiste(3), french-deconjugator(1).
113
114
115
116 October 9th, 2017 french-conjugator(1)