source: src/dgp/cmdline.ggo @ 5f4d9c3

Last change on this file since 5f4d9c3 was 5f4d9c3, checked in by Maciej Prill <mprill@…>, 12 years ago

Rewritten the build system, added lem UTF-8 version.

  • Property mode set to 100644
File size: 1.5 KB
Line 
1package "dgp"
2version "0.1"
3
4option  "grammar"       g       "Grammar file"
5                                string no typestr="filename"
6
7option  "long"          l       "Long output"
8                                flag off
9
10option  "debug"         d       "Debug mode."
11                                flag off
12
13option  "info"          -       "Print info.
14h - heads         d - dependents
15s - sets
16c - constraints   n - node/arc counts   t - parse time
17"
18string no default="h"
19#section "Common UTT options"
20
21
22option  "input"         f       "Input file" string no
23
24option  "output"        o       "Output file for succesfully processed segments" string no
25
26option  "fail"          e       "Output file for unsuccesfully processed segments " string no
27
28option  "only-fail"     -       "Print only segments the program failed to process" flag off hidden
29
30option  "no-fail"       -       "Print only segments the program processed" flag off hidden
31
32option  "copy"          c       "Copy succesfully processed segments to standard output" flag off
33
34option  "process"       p       "Process segments with this tag" string no multiple
35
36option  "select"        s       "Select only segments with this field" string no multiple
37
38option  "ignore"        S       "Select only segments without this field" string no multiple
39
40option  "output-field"  O       "Output field name" string no
41
42option  "input-field"   I       "Input field name" string no multiple
43
44option  "interactive"   i       "Toggle interactive mode" flag off
45
46option  "config"        -       "Configuration file" string typestr="FILENAME" no
47
48option  "one-field"     1       "Print all results in one segments (creates ambiguous annotation)" flag off
49
50option  "one-line"      -       "Print annotation alternatives as additional fields" flag off
51
52option  "language"      -       "Language." string no
Note: See TracBrowser for help on using the repository browser.