File: test.output

package info (click to toggle)
gengetopt 2.22.6%2Bdfsg0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,732 kB
  • sloc: cpp: 14,709; sh: 11,845; ansic: 8,030; makefile: 689; yacc: 514; lex: 171; sed: 3
file content (1947 lines) | stat: -rw-r--r-- 79,404 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
*** no_strings
*** no_multi_strings
*** no_multi_types
*** no_unamed
*** no_optgiven.sh
./no_optgiven: '--foo' ('-i') option required
the no_optgiven_cmd_parser2 returned successfully
./no_optgiven2: '--foo' ('-i') option required
*** more_than_once.sh
foo option: 10
bar option: hey
arg: test1
arg: test2
arg: test3
foo option: 10
bar option: hey
arg: test1
arg: test2
arg: test3
*** canonize-names
*** no_prog_name
specified --required: foo
additional: unamed
*** default_values
foo-opt is given: 0
bar-opt is given: 0
Value of foo: 15000
Value of bar: this is a default
Value of foo-opt: 15000
Value of bar-opt: this is a default
Value of foofloat: 15000.000000
Value of foodouble: 15000.000000
Value of PI:     3.1415926536
*** default_cmdline
Value of foo: 15000
Value of bar: this is a default
*** test_all_opts.sh
specified --opt-arg
specified --opt-arg-short
specified --opt-arg with argument bar
specified --opt-arg-short with argument foobar
specified --hidden: 10
*** test_all_opts_file_save.sh
specified --opt-arg
specified --opt-arg-short
*** test_groups.sh
./test_groups: 0 options of group grp1 were given. One is required.
./test_groups: 2 options of group grp1 were given. One is required.
./test_groups: 2 options of group my grp2 were given. At most one is required.
./test_groups: 0 options of group grp1 were given. One is required.
optA given
optA given
optA arg: foo
optAmul given 4 time(s)
optAmul arg: foo
optAmul arg: bar
optAmul arg: (null)
optAmul arg: aaa
*** test_modes.sh
optA given
optA given
./test_modes: option --optd conflicts with option --opta
./test_modes: option --optd conflicts with option --mopt
./test_modes: option --opta conflicts with option --mopt
./test_modes: '--optA' ('-A') option required
./test_modes: option --optd conflicts with option --mopt
*** test_conf_parser.sh
value of required: this is a test
value of string: another
value of no-short_given: 1
value of int: 100
value of float: 3.140000
value of multi-string_given: 8
  value of multi-string: -1
  value of multi-string: zero
  value of multi-string: first
  value of multi-string: second
  value of multi-string: third
  value of multi-string: fourth
  value of multi-string: fifth
  value of multi-string: sixth
value of multi-string-def_given: 0
default value of multi-string-def: this default
value of opta: FOO
noarg given 3 times
noarg_noshort given 2 times
opt-arg given: 1
opt-arg value: not given
saved configuration file test_conf_parser.save
*** test_conf_parser_ov.sh
value of required: bar
value of string: another
value of no-short_given: 1
value of int: 100
value of float: 2.140000
value of multi-string_given: 6
  value of multi-string: first
  value of multi-string: second
  value of multi-string: third
  value of multi-string: fourth
  value of multi-string: fifth
  value of multi-string: sixth
value of multi-string-def_given: 0
default value of multi-string-def: this default
*** test_conf_parser_ov2.sh
value of required: bar
value of string: another
value of no-short_given: 1
value of int: 100
value of float: 2.140000
*** test_conf_parser_ov3.sh
value of required: bar
value of string: another
value of no-short_given: 1
value of int: 100
value of float: 2.140000
value of multi-string_given: 7
  value of multi-string: first
  value of multi-string: second
  value of multi-string: 
  value of multi-string: third
  value of multi-string: from another file
  value of multi-string: 
  value of multi-string: last?
value of multi-string-def_given: 0
default value of multi-string-def: this default
*** test_conf_parser_ov4.sh
value of required: this is a test
value of string: another
value of no-short_given: 1
value of int: 100
value of float: 3.140000
./test_conf_parser_ov4: `--required' (`-r') option given more than once
*** test_conf_parser_err.sh
test_conf_parser: option '--string' requires an argument
*** test_conf_parser_err_string.sh
test_conf_parser:../../tests/test_conf_err_string.conf:3: malformed string in configuration file
test_conf_parser:../../tests/test_conf_err_string2.conf:3: unterminated string in configuration file
*** test_conf_parser_grp.sh
value of required: this is a test
value of string: another
value of no-short_given: 1
value of int: 100
value of float: 3.140000
value of multi-string_given: 4
  value of multi-string: first
  value of multi-string: second
  value of multi-string: 
  value of multi-string: third
value of multi-string-def_given: 0
default value of multi-string-def: this default
value of opta: BAR
noarg given 0 times
noarg_noshort given 0 times
opt-arg given: 0
opt-arg value: not given
*** test_conf_parser_save.sh
read configuration file: test_conf_parser.save
value of required: this is a test
value of string: another
value of no-short_given: 1
value of int: 100
value of float: 3.140000
value of multi-string_given: 8
  value of multi-string: -1
  value of multi-string: zero
  value of multi-string: first
  value of multi-string: second
  value of multi-string: third
  value of multi-string: fourth
  value of multi-string: fifth
  value of multi-string: sixth
value of multi-string-def_given: 0
default value of multi-string-def: this default
value of opta: FOO
noarg given 3 times
noarg_noshort given 2 times
opt-arg given: 1
opt-arg value: not given
*** test_multiple.sh
passed string: \"foo\"
passed string: bar
passed string: hello
passed string: world
passed int: 100
passed int: 200
default float: 15000.000000
passed no-short-opt: check
passed no-short-opt: this out
passed no-short-opt: first
passed no-short-opt: second
passed no-short-opt: third
passed no-short-opt: fourth
passed no-short-opt: fifth
noarg given 3 times
noarg_noshort given 2 times
optarg_given 3 times
optarg argument: no arg given
optarg argument: first arg for optarg
optarg argument: second arg for optarg
longlong_given 3 times
longlong argument: 1234567890
longlong argument: 234567890
longlong argument: 34567890
optarg_noshort_given 2 times
optarg_noshort argument: second arg for optarg
optarg_noshort argument: no arg given
*** test_simple_multiple_default.sh
default value: foo
*** test_simple_multiple.sh
passed string: first
passed string: second
passed string: third
*** test_multiple_err.sh
./test_multiple: option requires an argument -- 's'
./test_multiple: '--int' ('-i') option required
./test_multiple: '--limited' ('-L') option occurrences must be 3
./test_multiple: '--limited-interval' option occurrences must be between 1 and 3
./test_multiple: '--limited-open-right' option occurrences must be at least 3
./test_multiple: '--int' ('-i') option required
./test_multiple: '--limited-open-left' option occurrences must be at most 3
*** test_sections.sh
test_sections 1.0

Usage: test_sections [OPTIONS]... [FILES]...

  -h, --help                   Print help and exit
  -V, --version                Print version and exit
  -s, --string=STRING          string option
  -i, --int=INT                int option

First section.  This "section" definition has no description, since the
description is in the definition itself, that is wrapped too:
  -S, --short=SHORT            short option
  -l, --long=LONG              long option
  -f, --float=FLOAT            float option
  -d, --double=DOUBLE          double option
  -D, --longdouble=LONGDOUBLE  longdouble option

Second section:
  The following options belong to the second section
  by the way this second section also has this neat description, and it is
  quite long so it should require some kind of line wrapping, but don't worry:
  gengetopt will wrap it for you! ;-)
  -L, --longlong=LONGLONG      longlong option
  -F, --flag                   flag option  (default=on)
  -u, --function               function option

Last section:
      --no-short               no short option
  -r, --required=STRING        required option (mandatory)
*** test_default_values.sh
foo-opt is given: 0
bar-opt is given: 0
Value of foo: 15000
Value of bar: this is a default
Value of foo-opt: 15000
Value of bar-opt: this is a default
Value of foofloat: 15000.000000
Value of foodouble: 15000.000000
Value of PI:     3.1415926536
foo-opt is given: 1
bar-opt is given: 1
Value of foo: 15000
Value of bar: this is a default
Value of foo-opt: 15000
Value of bar-opt: this is a default
Value of foofloat: 15000.000000
Value of foodouble: 15000.000000
Value of PI:     3.1415926536
foo-opt is given: 1
bar-opt is given: 1
Value of foo: 15000
Value of bar: this is a default
Value of foo-opt: 15
Value of bar-opt: hi
Value of foofloat: 15000.000000
Value of foodouble: 15000.000000
Value of PI:     3.1415926536
foo-opt is given: 1
bar-opt is given: 1
Value of foo: 15000
Value of bar: this is a default
Value of foo-opt: 15000
Value of bar-opt: this is a default
Value of foofloat: 15000.000000
Value of foodouble: 15000.000000
Value of PI:     3.1415926536
foo-opt is given: 1
bar-opt is given: 1
Value of foo: 15000
Value of bar: this is a default
Value of foo-opt: 15
Value of bar-opt: hi
Value of foofloat: 15000.000000
Value of foodouble: 15000.000000
Value of PI:     3.1415926536
./default_values: invalid numeric value: a5
*** test_values.sh
specified --string-values with argument foobar
specified --string-values with (original) argument foob
(un)specified --string-values-def with argument bar
specified --string-values-def-argopt with argument foobar
specified --string-values-no-short with argument bar
specified --multistring-values with argument foo
specified --multistring-values with (original) argument foo
specified --multistring-values with argument bar
specified --multistring-values with (original) argument b
specified --multistring-values with argument bar
specified --multistring-values with (original) argument bar
specified --multistring-values with argument foo
specified --multistring-values with (original) argument foo
specified --multistring-values-def with argument bar
specified --multistring-values-def with (original) argument bar
specified --multistring-values-def with argument foo
specified --multistring-values-def with (original) argument (null)
specified --multistring-values-no-short with argument foo
specified --multistring-values-no-short with argument foo
specified --multistring-values-no-short with argument bar
specified --multistring-values-no-short with argument bar
specified --multistring-values-no-short with argument bar
specified --multistring-values-no-short with argument foo
specified --int-values with argument 180
specified --int-values with (original) argument 1
specified --int-values-m with argument 1800
specified --int-values-m with (original) argument 1
specified --int-values-m with argument 2700
specified --int-values-m with (original) argument 27
(un)specified --int-values-def with argument 180
specified --values-first-enums-plus with argument 2 (-foo)
(un)specified --values-second-enums with argument 1 (180)
specified --values-multiple-enums with argument 0
specified --values-multiple-enums with (original) argument FI
specified --values-multiple-enums with argument 1
specified --values-multiple-enums with (original) argument S
specified --values-multiple-enums with argument 2
specified --values-multiple-enums with (original) argument T
specified --values-multiple-enums with argument 3
specified --values-multiple-enums with (original) argument FOURTH
--values-unspecified-enums: -1
saved configuration file test_values.save
*** test_values_err.sh
./test_values: ambiguous argument, "fo", for option `--string-values' (`-s')
./test_values: invalid argument, "fooa", for option `--multistring-values' (`-S')
./test_values: invalid argument, "fooa", for option `--string-values-no-short'
./test_values: invalid argument, "fooa", for option `--multistring-values-no-short'
*** test_dep.sh
./test_all_opts: '--dependant' ('-A') option depends on option 'opt-arg'
specified --opt-arg with argument bar
*** test_manual_help.sh
specified --height 100
      --height=INT     this is the description of height
test_manual_help 1.0

Usage: test_manual_help [OPTIONS]... [FILES]...

  -h, --help           show help (possibly of other options)
  -?, --detailed-help  show detailed help
  -V, --version        show version of the program
      --height=INT     this is the description of height
  These are the details of option height
      --vavoom=STRING  this is the description of vavoom
specified --height 100
specified --height 100
      --height=INT     this is the description of height
specified --vavoom foo
      --vavoom=STRING  this is the description of vavoom
test_manual_help 1.0
specified --height 100
*** test_multiple_parsers.sh
second cmdline: -a20 -b10 --my-multi=a,b,c,d,e,f
  --option-a: 20
  --option-b: 10
  --my-multi: a
  --my-multi: b
  --my-multi: c
  --my-multi: d
  --my-multi: e
  --my-multi: f
second cmdline: --my-multi g
  --my-multi: g
first cmdline: -M400 -a10 --multi 100,200,300
  --option-a: 10
  --multi: 400
  --multi: 100
  --multi: 200
  --multi: 300
first cmdline: -M500 -M600
  --multi: 500
  --multi: 600
*** test_sections_option_help
help_help:   -h, --help                   Print help and exit
version_help:   -V, --version                Print version and exit
string_help:   -s, --string=STRING          string option
int_help:   -i, --int=INT                int option
short_help:   -S, --short=SHORT            short option
long_help:   -l, --long=LONG              long option
float_help:   -f, --float=FLOAT            float option
double_help:   -d, --double=DOUBLE          double option
longdouble_help:   -D, --longdouble=LONGDOUBLE  longdouble option
longlong_help:   -L, --longlong=LONGLONG      longlong option
flag_help:   -F, --flag                   flag option  (default=on)
function_help:   -u, --function               function option
no_short_help:       --no-short               no short option
required_help:   -r, --required=STRING        required option (mandatory)
*** test_all_opts_option_help
help_help:   -h, --help                    Print help and exit
full_help_help:       --full-help               Print help, including hidden options, and exit
version_help:   -V, --version                 Print version and exit
string_help:   -s, --string=STRING            string option
int_help:   -i, --int=INT                 int option
short_help:   -S, --short=SHORT             short option
long_help:   -l, --long=LONG               long option
float_help:   -f, --float=FLOAT             float option
double_help:   -d, --double=DOUBLE           double option
longdouble_help:   -D, --longdouble=LONGDOUBLE   longdouble option
longlong_help:   -L, --longlong=LONGLONG       longlong option
flag_help:   -F, --flag                    flag option  (default=on)
function_help:   -u, --function                function option
no_short_help:       --no-short                no short option
opt_arg_help:       --opt-arg[=STRING]        option with optional arg
opt_arg_short_help:   -o, --opt-arg-short[=STRING]  option with optional arg (short)
required_help:   -r, --required=STRING         required option (mandatory)
hidden_help:   -H, --hidden=INT              hidden option
dependant_help:   -A, --dependant=STRING        option that depends on opt-arg
very_very_long_option_help:       --very-very-long-option=STRING
                                the name of this option is long enough to make
                                  this description begin on a new line
assume_multimeth_virtual_help:   -y, --assume-multimeth-virtual
                                the name of this option is just as long as the
                                  maximum allowed, so this description begin on
                                  a new line
file_save_help:       --file-save=STRING        save the passed options into a file
*** test_groups_option_help
help_help:   -h, --help              Print help and exit
version_help:   -V, --version           Print version and exit
opta_help:   -a, --opta              string a
optA_help:   -A, --optA[=STRING]     string A
optAmul_help:   -M, --optAmul[=STRING]  string M
optb_help:   -b, --optb              string b
optc_help:       --optc              string c
optd_help:   -d, --optd              string d
*** test_modes_option_help
help_help:   -h, --help              Print help and exit
version_help:   -V, --version           Print version and exit
opta_help:   -a, --opta              string a
optA_help:   -A, --optA[=STRING]     string A (mandatory)
optAmul_help:   -M, --optAmul[=STRING]  string M
optb_help:   -b, --optb              string b
optc_help:       --optc              string c
optd_help:   -d, --optd              string d (mandatory)
mopt_help:   -m, --mopt=INT          option of my mode
*** test_no_options
*** test_newlines
*** test_text
*** test_only_flags
*** test_usage
*** test_show_help.sh
test_all_opts 1.0

This is just a gengetopt's test file

Usage: test_all_opts [OPTIONS]...

This is just a test file

to test all possible
command line type options.

In ggo files comments start with # and end at EOL

  -h, --help                    Print help and exit
      --detailed-help           Print help, including all details and hidden
                                  options, and exit
      --full-help               Print help, including hidden options, and exit
  -V, --version                 Print version and exit

  -s, --string=STRING            string option
  -i, --int=INT                 int option
  -S, --short=SHORT             short option
  -l, --long=LONG               long option
  -f, --float=FLOAT             float option
  -d, --double=DOUBLE           double option
  -D, --longdouble=LONGDOUBLE   longdouble option
  -L, --longlong=LONGLONG       longlong option
  -F, --flag                    flag option  (default=on)
  -u, --function                function option
      --no-short                no short option
      --opt-arg[=STRING]        option with optional arg
  -o, --opt-arg-short[=STRING]  option with optional arg (short)
  -r, --required=STRING         required option

Before the dependant option there is a hidden option, so it shouldn't be
visible in the output of --help, but it will be visible in the output of
--full-help.

  -A, --dependant=STRING        option that depends on opt-arg

This is a text line just to write something in the output

Notice that a text line can contain line breaks, just like this very text, and
that, just like all the other texts, it is wrapped by gengetopt automatically
if it's too long.

Moreover, text can be specified more than once in the input file.

      --very-very-long-option=STRING
                                the name of this option is long enough to make
                                  this description begin on a new line
  -y, --assume-multimeth-virtual
                                the name of this option is just as long as the
                                  maximum allowed, so this description begin on
                                  a new line
      --file-save=STRING        save the passed options into a file

A text after all options.
test_all_opts 1.0
test_values 1.0

This is just a test file
to test options
with the list of acceptable values

Usage: test_values [OPTIONS]...

  -h, --help                    Print help and exit
  -V, --version                 Print version and exit
  -s, --string-values=STRING    string option with values  (possible
                                  values="foo", "foa", "bar", "foobar",
                                  "barfoo")
      --string-values-plus=STRING
                                string option with values containing + and -
                                  (possible values="+foo", "-foo", "bar",
                                  "foobar", "barfoo", "+foobar",
                                  "-barfoo")
      --string-values-def=STRING
                                string option with values and default
                                  (possible values="foo", "bar",
                                  "foobar", "barfoo" default=`bar')
      --string-values-def-argopt[=STRING]
                                string option with values and default and
                                  optional argument  (possible values="foo",
                                  "bar", "foobar", "barfoo"
                                  default=`foobar')
      --string-values-no-short=STRING
                                string option with values no short  (possible
                                  values="foo", "bar", "foobar",
                                  "barfoo")
  -S, --multistring-values=STRING
                                multiple string option with values  (possible
                                  values="foo", "bar")
      --multistring-values-def[=STRING]
                                multiple string option with values and default
                                  (possible values="foo", "bar"
                                  default=`foo')
      --multistring-values-no-short=BAR
                                multiple string option with values no-short
                                  (possible values="foo", "bar")

 Group: group1
      --string-values-group=FOO group string option with values and default
                                  (possible values="foo", "bar",
                                  "foobar", "barfoo" default=`bar')
  -i, --int-values=INT          int option with values  (possible
                                  values="90", "180", "270", "360")
  -I, --int-values-m=INT        multiple int option with values  (possible
                                  values="900", "1800", "2700", "3600")
      --int-values-def=INT      int option with values and default  (possible
                                  values="90", "180", "270", "360"
                                  default=`180')
  -e, --values-first-enums=ENUM option with values and enums 1  (possible
                                  values="FOO", "BAR", "ANOTHER",
                                  "SOMETHING")
  -E, --values-first-enums-plus=ENUM
                                option with values and enums with plus and
                                  minus 1  (possible values="+foo", "+bar",
                                  "-foo", "-bar", "all")
      --values-second-enums=ENUM
                                option with values and enums 2 with default
                                  (possible values="90", "180", "270",
                                  "360" default=`180')
  -W, --values-multiple-enums=ENUM
                                multiple option with values and enums
                                  (possible values="FIRST", "SECOND",
                                  "THIRD", "FOURTH" default=`FOURTH')
  -N, --values-unspecified-enums=ENUM
                                option with values that will not be specified
                                  on the command line  (possible
                                  values="FOO", "BAR", "ANOTHER",
                                  "SOMETHING")
      --file-save=STRING        save the passed options into a file
*** test_err.sh
diff wrong_default.err.out ../../tests/wrong_default.err
diff wrong_dep.err.out ../../tests/wrong_dep.err
diff wrong_enum_use.err.out ../../tests/wrong_enum_use.err
diff wrong_flag2.err.out ../../tests/wrong_flag2.err
diff wrong_flag.err.out ../../tests/wrong_flag.err
diff wrong_group2.err.out ../../tests/wrong_group2.err
diff wrong_group.err.out ../../tests/wrong_group.err
diff wrong_help_redef.err.out ../../tests/wrong_help_redef.err
diff wrong_multiple_occurrence.err.out ../../tests/wrong_multiple_occurrence.err
diff wrong_numeric_value.err.out ../../tests/wrong_numeric_value.err
diff wrong_version_redef.err.out ../../tests/wrong_version_redef.err
*** no_strings -h
no_strings 1.0

Usage: no_strings [--foo|-i] <additional files>

  -h, --help     Print help and exit
  -V, --version  Print version and exit
  -i, --foo=INT  foo option
*** no_multi_strings -h
no multi strings 0.1

Has multiple options none of which are strings

Usage: no multi strings [OPTIONS]... [FILES]...

  -h, --help               Print help and exit
  -V, --version            Print version and exit
  -t, --test=A test value  This is a test option  (default=`5')
      --multi=Multivalue   This is a multi option
*** no_multi_types -h
no multi types 0.1

Has multiple options none of which has type

Usage: no multi types [OPTIONS]... [FILES]...

  -h, --help               Print help and exit
  -V, --version            Print version and exit
  -t, --test=A test value  This is a test option  (default=`5')
      --multi              This is a multi option with no type
*** no_unamed -h
no_unamed 1.0

Usage: no_unamed [OPTIONS]...

  -h, --help        Print help and exit
  -V, --version     Print version and exit
  -i, --foo=STRING  foo string option
*** no_optgiven -h
no_optgiven 1.0

Usage: no_optgiven [OPTIONS]... [FILES]...

  -h, --help     Print help and exit
  -V, --version  Print version and exit
  -i, --foo=INT  foo option
*** no_optgiven2 -h
no_optgiven 1.0

Usage: no_optgiven [OPTIONS]... [FILES]...

  -h, --help     Print help and exit
  -V, --version  Print version and exit
  -i, --foo=INT  foo option
*** more_than_once -h
more_than_once 1.0

Usage: more_than_once [OPTIONS]... [FILES]...

  -h, --help        Print help and exit
  -V, --version     Print version and exit
  -f, --foo=INT     foo option
  -b, --bar=STRING  bar option
*** no_prog_name -h
specified --required: foo
additional: unamed
*** canonize-names -h
canonize_names 1.0

Usage: canonize_names [OPTIONS]...

  -h, --help         Print help and exit
  -V, --version      Print version and exit
  -i, --foo-bar=INT  foo-bar option
  -j, --foo.foo=INT  foo.foo option
*** default_values -h
default_values 1.0

Usage: default_values [OPTIONS]... [FILES]...

  -h, --help                  Print help and exit
  -V, --version               Print version and exit
  -f, --foo=INT               foo option  (default=`15000')
  -b, --bar=STRING            bar option  (default=`this is a default')
  -F, --foo-opt[=INT]         foo option with optional arg  (default=`15000')
  -B, --bar-opt[=STRING]      bar option with optional arg  (default=`this is a
                                default')
      --foofloat=FLOAT        foo float option  (default=`15000')
      --foodouble=DOUBLE      foo double option  (default=`15000')
  -p, --pi=DOUBLE             PI option  (default=`3.1415926536')
  -s, --timeout=123456789012  number of seconds after the scanning is cancelled
                                if no progress is shown at all.
                                (default=`120')
*** default_cmdline -h
GNU gengetopt 1.0

Usage: gengetopt [OPTIONS]...

  -h, --help        Print help and exit
  -V, --version     Print version and exit
  -f, --foo=INT     foo option  (default=`15000')
  -b, --bar=STRING  bar option  (default=`this is a default')
*** test_all_opts -h
test_all_opts 1.0

This text is printed after the version during --version
this is a test this is a test this is a test this is a test this is a test this
is a test this is a test this is a test this is a test this is a test!

This is just a gengetopt's test file

Usage: test_all_opts [OPTIONS]... [FILES]...

This is just a test file

to test all possible
command line type options.

In ggo files comments start with # and end at EOL

  -h, --help                    Print help and exit
      --detailed-help           Print help, including all details and hidden
                                  options, and exit
      --full-help               Print help, including hidden options, and exit
  -V, --version                 Print version and exit

  -s, --string=STRING            string option
  -i, --int=INT                 int option
  -S, --short=SHORT             short option
  -l, --long=LONG               long option
  -f, --float=FLOAT             float option
  -d, --double=DOUBLE           double option
  -D, --longdouble=LONGDOUBLE   longdouble option
  -L, --longlong=LONGLONG       longlong option
  -F, --flag                    flag option  (default=on)
  -u, --function                function option
      --no-short                no short option
      --opt-arg[=STRING]        option with optional arg
  -o, --opt-arg-short[=STRING]  option with optional arg (short)
  -r, --required=STRING         required option (mandatory)

Before the dependant option there is a hidden option, so it shouldn't be
visible in the output of --help, but it will be visible in the output of
--full-help.

  -A, --dependant=STRING        option that depends on opt-arg

This is a text line just to write something in the output

Notice that a text line can contain line breaks, just like this very text, and
that, just like all the other texts, it is wrapped by gengetopt automatically
if it's too long.

Moreover, text can be specified more than once in the input file.

      --very-very-long-option=STRING
                                the name of this option is long enough to make
                                  this description begin on a new line
  -y, --assume-multimeth-virtual
                                the name of this option is just as long as the
                                  maximum allowed, so this description begin on
                                  a new line
      --file-save=STRING        save the passed options into a file

A text after all options.
*** test_groups -h
test_groups 1.0

Usage: test_groups [OPTIONS]... [FILES]...

  -h, --help              Print help and exit
  -V, --version           Print version and exit

some groups just for testing:

 Group: grp1
  an option of this group is required
  Notice that this description is quite long so it may spawn many lines...
  fortunately gengetopt will wrap it for you :-)
  -a, --opta              string a
  -A, --optA[=STRING]     string A
  -M, --optAmul[=STRING]  string M
  -b, --optb              string b

 Group: my grp2
      --optc              string c
  -d, --optd              string d
*** test_modes -h
test_modes 1.0

Usage: test_modes [OPTIONS]... [FILES]...

  -h, --help              Print help and exit
  -V, --version           Print version and exit

some non mode options:
  -N, --no-mode           a generic option not beloging to any mode
      --no-mode2=STRING   another generic option not beloging to any mode

some modes just for testing:

 Mode: mode1
  any option of this mode is in contrast with any option of the other mode
  Notice that this description is quite long so it may spawn many lines...
  fortunately gengetopt will wrap it for you :-)
  -a, --opta              string a
  -A, --optA[=STRING]     string A (mandatory)
  -M, --optAmul[=STRING]  string M
  -b, --optb              string b

 Mode: mode 2
      --optc              string c
  -d, --optd              string d (mandatory)

 Mode: my mode
  -m, --mopt=INT          option of my mode
*** test_conf_parser -h
test_conf_parser 1.0

Usage: test_conf_parser [OPTIONS]... [OTHER NAMES]...

  -h, --help                    Print help and exit
  -V, --version                 Print version and exit

 Group: grp1
  an option of this group is required
  -a, --opta=STRING             string a
  -b, --optb=STRING             string b

 Group: my grp2
      --optc                    string c
  -C, --optd                    string d
  -s, --string=STRING           string option
  -i, --int=INT                 int option
  -S, --short=SHORT             short option
  -l, --long=LONG               long option
  -f, --float=FLOAT             float option
  -d, --double=DOUBLE           double option
  -D, --longdouble=LONGDOUBLE   longdouble option
  -L, --longlong=LONGLONG       longlong option
  -F, --flag                    flag option  (default=on)
  -u, --function                function option
      --no-short                no short option
  -r, --required=STRING         required option
  -c, --conf-file=STRING        config file  (default=`test_conf.conf')
  -M, --multi-string=STRING     multiple string option
      --multi-string-def=STRING multiple string option with default
                                  (default=`this default')
  -n, --noarg                   multiple option with no arg
      --noarg-noshort           multiple option with no arg and no short
      --opt-arg[=STRING]        option with optional arg
      --file-save=STRING        save the passed options into a file
*** test_conf_parser_ov -h
test_conf_parser 1.0

Usage: test_conf_parser [OPTIONS]... [OTHER NAMES]...

  -h, --help                    Print help and exit
  -V, --version                 Print version and exit

 Group: grp1
  an option of this group is required
  -a, --opta=STRING             string a
  -b, --optb=STRING             string b

 Group: my grp2
      --optc                    string c
  -C, --optd                    string d
  -s, --string=STRING           string option
  -i, --int=INT                 int option
  -S, --short=SHORT             short option
  -l, --long=LONG               long option
  -f, --float=FLOAT             float option
  -d, --double=DOUBLE           double option
  -D, --longdouble=LONGDOUBLE   longdouble option
  -L, --longlong=LONGLONG       longlong option
  -F, --flag                    flag option  (default=on)
  -u, --function                function option
      --no-short                no short option
  -r, --required=STRING         required option
  -c, --conf-file=STRING        config file  (default=`test_conf.conf')
  -M, --multi-string=STRING     multiple string option
      --multi-string-def=STRING multiple string option with default
                                  (default=`this default')
  -n, --noarg                   multiple option with no arg
      --noarg-noshort           multiple option with no arg and no short
      --opt-arg[=STRING]        option with optional arg
      --file-save=STRING        save the passed options into a file
*** test_conf_parser_ov2 -h
test_conf_parser 1.0

Usage: test_conf_parser [OPTIONS]... [OTHER NAMES]...

  -h, --help                    Print help and exit
  -V, --version                 Print version and exit

 Group: grp1
  an option of this group is required
  -a, --opta=STRING             string a
  -b, --optb=STRING             string b

 Group: my grp2
      --optc                    string c
  -C, --optd                    string d
  -s, --string=STRING           string option
  -i, --int=INT                 int option
  -S, --short=SHORT             short option
  -l, --long=LONG               long option
  -f, --float=FLOAT             float option
  -d, --double=DOUBLE           double option
  -D, --longdouble=LONGDOUBLE   longdouble option
  -L, --longlong=LONGLONG       longlong option
  -F, --flag                    flag option  (default=on)
  -u, --function                function option
      --no-short                no short option
  -r, --required=STRING         required option
  -c, --conf-file=STRING        config file  (default=`test_conf.conf')
  -M, --multi-string=STRING     multiple string option
      --multi-string-def=STRING multiple string option with default
                                  (default=`this default')
  -n, --noarg                   multiple option with no arg
      --noarg-noshort           multiple option with no arg and no short
      --opt-arg[=STRING]        option with optional arg
      --file-save=STRING        save the passed options into a file
*** test_conf_parser_ov3 -h
test_conf_parser 1.0

Usage: test_conf_parser [OPTIONS]... [OTHER NAMES]...

  -h, --help                    Print help and exit
  -V, --version                 Print version and exit

 Group: grp1
  an option of this group is required
  -a, --opta=STRING             string a
  -b, --optb=STRING             string b

 Group: my grp2
      --optc                    string c
  -C, --optd                    string d
  -s, --string=STRING           string option
  -i, --int=INT                 int option
  -S, --short=SHORT             short option
  -l, --long=LONG               long option
  -f, --float=FLOAT             float option
  -d, --double=DOUBLE           double option
  -D, --longdouble=LONGDOUBLE   longdouble option
  -L, --longlong=LONGLONG       longlong option
  -F, --flag                    flag option  (default=on)
  -u, --function                function option
      --no-short                no short option
  -r, --required=STRING         required option
  -c, --conf-file=STRING        config file  (default=`test_conf.conf')
  -M, --multi-string=STRING     multiple string option
      --multi-string-def=STRING multiple string option with default
                                  (default=`this default')
  -n, --noarg                   multiple option with no arg
      --noarg-noshort           multiple option with no arg and no short
      --opt-arg[=STRING]        option with optional arg
      --file-save=STRING        save the passed options into a file
*** test_conf_parser_ov4 -h
test_conf_parser 1.0

Usage: test_conf_parser [OPTIONS]... [OTHER NAMES]...

  -h, --help                    Print help and exit
  -V, --version                 Print version and exit

 Group: grp1
  an option of this group is required
  -a, --opta=STRING             string a
  -b, --optb=STRING             string b

 Group: my grp2
      --optc                    string c
  -C, --optd                    string d
  -s, --string=STRING           string option
  -i, --int=INT                 int option
  -S, --short=SHORT             short option
  -l, --long=LONG               long option
  -f, --float=FLOAT             float option
  -d, --double=DOUBLE           double option
  -D, --longdouble=LONGDOUBLE   longdouble option
  -L, --longlong=LONGLONG       longlong option
  -F, --flag                    flag option  (default=on)
  -u, --function                function option
      --no-short                no short option
  -r, --required=STRING         required option
  -c, --conf-file=STRING        config file  (default=`test_conf.conf')
  -M, --multi-string=STRING     multiple string option
      --multi-string-def=STRING multiple string option with default
                                  (default=`this default')
  -n, --noarg                   multiple option with no arg
      --noarg-noshort           multiple option with no arg and no short
      --opt-arg[=STRING]        option with optional arg
      --file-save=STRING        save the passed options into a file
*** test_conf_parser_file_save -h
test_conf_parser 1.0

Usage: test_conf_parser [OPTIONS]... [OTHER NAMES]...

  -h, --help                    Print help and exit
  -V, --version                 Print version and exit

 Group: grp1
  an option of this group is required
  -a, --opta=STRING             string a
  -b, --optb=STRING             string b

 Group: my grp2
      --optc                    string c
  -C, --optd                    string d
  -s, --string=STRING           string option
  -i, --int=INT                 int option
  -S, --short=SHORT             short option
  -l, --long=LONG               long option
  -f, --float=FLOAT             float option
  -d, --double=DOUBLE           double option
  -D, --longdouble=LONGDOUBLE   longdouble option
  -L, --longlong=LONGLONG       longlong option
  -F, --flag                    flag option  (default=on)
  -u, --function                function option
      --no-short                no short option
  -r, --required=STRING         required option
  -c, --conf-file=STRING        config file  (default=`test_conf.conf')
  -M, --multi-string=STRING     multiple string option
      --multi-string-def=STRING multiple string option with default
                                  (default=`this default')
  -n, --noarg                   multiple option with no arg
      --noarg-noshort           multiple option with no arg and no short
      --opt-arg[=STRING]        option with optional arg
      --file-save=STRING        save the passed options into a file
*** test_multiple -h
test_multiple 1.0

Usage: test_multiple [OPTIONS]... [FILES]...

  -h, --help                    Print help and exit
  -V, --version                 Print version and exit
  -s, --string=STRING           string option  (default=`foo')
  -i, --int=INT                 int option (mandatory)
  -S, --short=SHORT             short option
  -l, --long=LONG               long option
      --longlong=LONGLONG       long long option
  -L, --limited=STRING          limited multiple option
      --limited-interval=STRING limited multiple option (with interval)
      --big-limited-interval=STRING
                                limited multiple option (with interval)
      --limited-open-right=STRING
                                limited multiple option (with interval right
                                  open)
      --limited-open-left=STRING
                                limited multiple option (with interval left
                                  open)
  -f, --float=FLOAT             float option  (default=`15000')
      --no-short-opt=STRING     string option with no short
  -n, --noarg                   multiple option with no arg
      --noarg-noshort           multiple option with no arg and no short
  -M, --optarg[=ID]             multi with optional args
      --optarg-noshort[=ID]     multi with optional args and no short
      --file-save=STRING        save the passed options into a file
*** test_simple_multiple -h
test_simple_multiple 1.0

Usage: test_simple_multiple [OPTIONS]... [FILES]...

  -h, --help           Print help and exit
  -V, --version        Print version and exit
  -s, --string=STRING  string option  (default=`foo')
*** test_sections -h
test_sections 1.0

Usage: test_sections [OPTIONS]... [FILES]...

  -h, --help                   Print help and exit
  -V, --version                Print version and exit
  -s, --string=STRING          string option
  -i, --int=INT                int option

First section.  This "section" definition has no description, since the
description is in the definition itself, that is wrapped too:
  -S, --short=SHORT            short option
  -l, --long=LONG              long option
  -f, --float=FLOAT            float option
  -d, --double=DOUBLE          double option
  -D, --longdouble=LONGDOUBLE  longdouble option

Second section:
  The following options belong to the second section
  by the way this second section also has this neat description, and it is
  quite long so it should require some kind of line wrapping, but don't worry:
  gengetopt will wrap it for you! ;-)
  -L, --longlong=LONGLONG      longlong option
  -F, --flag                   flag option  (default=on)
  -u, --function               function option

Last section:
      --no-short               no short option
  -r, --required=STRING        required option (mandatory)
*** test_values -h
test_values 1.0

This is just a test file
to test options
with the list of acceptable values

Usage: test_values [OPTIONS]... [FILES]...

  -h, --help                    Print help and exit
  -V, --version                 Print version and exit
  -s, --string-values=STRING    string option with values  (possible
                                  values="foo", "foa", "bar", "foobar",
                                  "barfoo")
      --string-values-plus=STRING
                                string option with values containing + and -
                                  (possible values="+foo", "-foo", "bar",
                                  "foobar", "barfoo", "+foobar",
                                  "-barfoo")
      --string-values-def=STRING
                                string option with values and default
                                  (possible values="foo", "bar",
                                  "foobar", "barfoo" default=`bar')
      --string-values-def-argopt[=STRING]
                                string option with values and default and
                                  optional argument  (possible values="foo",
                                  "bar", "foobar", "barfoo"
                                  default=`foobar')
      --string-values-no-short=STRING
                                string option with values no short  (possible
                                  values="foo", "bar", "foobar",
                                  "barfoo")
  -S, --multistring-values=STRING
                                multiple string option with values  (possible
                                  values="foo", "bar")
      --multistring-values-def[=STRING]
                                multiple string option with values and default
                                  (possible values="foo", "bar"
                                  default=`foo')
      --multistring-values-no-short=BAR
                                multiple string option with values no-short
                                  (possible values="foo", "bar")

 Group: group1
      --string-values-group=FOO group string option with values and default
                                  (possible values="foo", "bar",
                                  "foobar", "barfoo" default=`bar')
  -i, --int-values=INT          int option with values  (possible
                                  values="90", "180", "270", "360")
  -I, --int-values-m=INT        multiple int option with values  (possible
                                  values="900", "1800", "2700", "3600")
      --int-values-def=INT      int option with values and default  (possible
                                  values="90", "180", "270", "360"
                                  default=`180')
  -e, --values-first-enums=ENUM option with values and enums 1  (possible
                                  values="FOO", "BAR", "ANOTHER",
                                  "SOMETHING")
  -E, --values-first-enums-plus=ENUM
                                option with values and enums with plus and
                                  minus 1  (possible values="+foo", "+bar",
                                  "-foo", "-bar", "all")
      --values-second-enums=ENUM
                                option with values and enums 2 with default
                                  (possible values="90", "180", "270",
                                  "360" default=`180')
  -W, --values-multiple-enums=ENUM
                                multiple option with values and enums
                                  (possible values="FIRST", "SECOND",
                                  "THIRD", "FOURTH" default=`FOURTH')
  -N, --values-unspecified-enums=ENUM
                                option with values that will not be specified
                                  on the command line  (possible
                                  values="FOO", "BAR", "ANOTHER",
                                  "SOMETHING")
      --file-save=STRING        save the passed options into a file
*** test_values_cc -h
test_values 1.0

This is just a test file
to test options
with the list of acceptable values

Usage: test_values [OPTIONS]... [FILES]...

  -h, --help                    Print help and exit
  -V, --version                 Print version and exit
  -s, --string-values=STRING    string option with values  (possible
                                  values="foo", "foa", "bar", "foobar",
                                  "barfoo")
      --string-values-plus=STRING
                                string option with values containing + and -
                                  (possible values="+foo", "-foo", "bar",
                                  "foobar", "barfoo", "+foobar",
                                  "-barfoo")
      --string-values-def=STRING
                                string option with values and default
                                  (possible values="foo", "bar",
                                  "foobar", "barfoo" default=`bar')
      --string-values-def-argopt[=STRING]
                                string option with values and default and
                                  optional argument  (possible values="foo",
                                  "bar", "foobar", "barfoo"
                                  default=`foobar')
      --string-values-no-short=STRING
                                string option with values no short  (possible
                                  values="foo", "bar", "foobar",
                                  "barfoo")
  -S, --multistring-values=STRING
                                multiple string option with values  (possible
                                  values="foo", "bar")
      --multistring-values-def[=STRING]
                                multiple string option with values and default
                                  (possible values="foo", "bar"
                                  default=`foo')
      --multistring-values-no-short=BAR
                                multiple string option with values no-short
                                  (possible values="foo", "bar")

 Group: group1
      --string-values-group=FOO group string option with values and default
                                  (possible values="foo", "bar",
                                  "foobar", "barfoo" default=`bar')
  -i, --int-values=INT          int option with values  (possible
                                  values="90", "180", "270", "360")
  -I, --int-values-m=INT        multiple int option with values  (possible
                                  values="900", "1800", "2700", "3600")
      --int-values-def=INT      int option with values and default  (possible
                                  values="90", "180", "270", "360"
                                  default=`180')
  -e, --values-first-enums=ENUM option with values and enums 1  (possible
                                  values="FOO", "BAR", "ANOTHER",
                                  "SOMETHING")
  -E, --values-first-enums-plus=ENUM
                                option with values and enums with plus and
                                  minus 1  (possible values="+foo", "+bar",
                                  "-foo", "-bar", "all")
      --values-second-enums=ENUM
                                option with values and enums 2 with default
                                  (possible values="90", "180", "270",
                                  "360" default=`180')
  -W, --values-multiple-enums=ENUM
                                multiple option with values and enums
                                  (possible values="FIRST", "SECOND",
                                  "THIRD", "FOURTH" default=`FOURTH')
  -N, --values-unspecified-enums=ENUM
                                option with values that will not be specified
                                  on the command line  (possible
                                  values="FOO", "BAR", "ANOTHER",
                                  "SOMETHING")
      --file-save=STRING        save the passed options into a file
*** test_redef_help -h
specified --height
*** test_manual_help -h
test_manual_help 1.0

Usage: test_manual_help [OPTIONS]... [FILES]...

  -h, --help           show help (possibly of other options)
  -?, --detailed-help  show detailed help
  -V, --version        show version of the program
      --height=INT     this is the description of height
      --vavoom=STRING  this is the description of vavoom
*** test_no_handle_help -h
####################
# HEADER
####################
test_no_handle_help 1.0

Usage: test_no_handle_help [OPTIONS]... [FILES]...

  -h, --help           Print help and exit
      --detailed-help  Print help, including all details and hidden options,
                         and exit
  -V, --version        Print version and exit
      --height=INT     this is the description of height
      --vavoom=STRING  this is the description of vavoom
####################
# FOOTER
####################
*** test_multiple_parsers -h
GNU gengetopt 1.0

Usage: gengetopt [OPTIONS]... [FILES]...

  -h, --help                    Print help and exit
  -V, --version                 Print version and exit
  -F, --first-cmd=first command the first command line to parse (mandatory)
  -S, --second-cmd=second command
                                the second command line to parse (mandatory)
*** test_sections_option_help -h
help_help:   -h, --help                   Print help and exit
version_help:   -V, --version                Print version and exit
string_help:   -s, --string=STRING          string option
int_help:   -i, --int=INT                int option
short_help:   -S, --short=SHORT            short option
long_help:   -l, --long=LONG              long option
float_help:   -f, --float=FLOAT            float option
double_help:   -d, --double=DOUBLE          double option
longdouble_help:   -D, --longdouble=LONGDOUBLE  longdouble option
longlong_help:   -L, --longlong=LONGLONG      longlong option
flag_help:   -F, --flag                   flag option  (default=on)
function_help:   -u, --function               function option
no_short_help:       --no-short               no short option
required_help:   -r, --required=STRING        required option (mandatory)
*** test_all_opts_option_help -h
help_help:   -h, --help                    Print help and exit
full_help_help:       --full-help               Print help, including hidden options, and exit
version_help:   -V, --version                 Print version and exit
string_help:   -s, --string=STRING            string option
int_help:   -i, --int=INT                 int option
short_help:   -S, --short=SHORT             short option
long_help:   -l, --long=LONG               long option
float_help:   -f, --float=FLOAT             float option
double_help:   -d, --double=DOUBLE           double option
longdouble_help:   -D, --longdouble=LONGDOUBLE   longdouble option
longlong_help:   -L, --longlong=LONGLONG       longlong option
flag_help:   -F, --flag                    flag option  (default=on)
function_help:   -u, --function                function option
no_short_help:       --no-short                no short option
opt_arg_help:       --opt-arg[=STRING]        option with optional arg
opt_arg_short_help:   -o, --opt-arg-short[=STRING]  option with optional arg (short)
required_help:   -r, --required=STRING         required option (mandatory)
hidden_help:   -H, --hidden=INT              hidden option
dependant_help:   -A, --dependant=STRING        option that depends on opt-arg
very_very_long_option_help:       --very-very-long-option=STRING
                                the name of this option is long enough to make
                                  this description begin on a new line
assume_multimeth_virtual_help:   -y, --assume-multimeth-virtual
                                the name of this option is just as long as the
                                  maximum allowed, so this description begin on
                                  a new line
file_save_help:       --file-save=STRING        save the passed options into a file
*** test_groups_option_help -h
help_help:   -h, --help              Print help and exit
version_help:   -V, --version           Print version and exit
opta_help:   -a, --opta              string a
optA_help:   -A, --optA[=STRING]     string A
optAmul_help:   -M, --optAmul[=STRING]  string M
optb_help:   -b, --optb              string b
optc_help:       --optc              string c
optd_help:   -d, --optd              string d
*** test_modes_option_help -h
help_help:   -h, --help              Print help and exit
version_help:   -V, --version           Print version and exit
opta_help:   -a, --opta              string a
optA_help:   -A, --optA[=STRING]     string A (mandatory)
optAmul_help:   -M, --optAmul[=STRING]  string M
optb_help:   -b, --optb              string b
optc_help:       --optc              string c
optd_help:   -d, --optd              string d (mandatory)
mopt_help:   -m, --mopt=INT          option of my mode
*** test_no_options -h
test_no_options 1.0

This is a program with no option but the default ones

Usage: test_no_options [OPTIONS]... [FILES]...

  -h, --help     Print help and exit
  -V, --version  Print version and exit
*** test_newlines -h
GNU gengetopt 2.22.6

Usage: gengetopt [OPTIONS]... [FILES]...

  -h, --help        Print help and exit
  -V, --version     Print version and exit
  -F, --format=fmt  this is the \nformat used for find -printf
                      (default=`%p\t%s\n')
*** test_text -h
GNU gengetopt 2.22.6

Usage: gengetopt [OPTIONS]... [FILES]...

  -h, --help              Print help and exit
  -V, --version           Print version and exit

Section 1:
  -s, --str-opt=filename  A string option, for a filename
      explain more about the string option      some text after section 2

Section 2:
  -i, --int-opt=INT       A int option
      some final text
*** test_only_flags -h
test_only_flags 1.0

Usage: test_only_flags [OPTIONS]... [FILES]...

  -h, --help     Print help and exit
  -V, --version  Print version and exit
  -f, --foo      foo option  (default=on)
*** test_usage -h
foo 1.0

Highlight the syntax of a source file (e.g. Java) into a specific format (e.g.
HTML)

Usage: 1. source-highlight [OPTIONS]... < input_file > output_file
       2. source-highlight [OPTIONS]... -i input_file -o output_file
       3. source-highlight [OPTIONS]... [FILES]...

  -h, --help             Print help and exit
  -V, --version          Print version and exit
  -i, --input=filename   input file. default std input
  -o, --output=filename  output file. default 
                           std output (when the third invocation form is used).
                            
                           If STDOUT
                            is specified, the output is directed to standard
                           output
*** test_all_opts --full-help
test_all_opts 1.0

This text is printed after the version during --version
this is a test this is a test this is a test this is a test this is a test this
is a test this is a test this is a test this is a test this is a test!

This is just a gengetopt's test file

Usage: test_all_opts [OPTIONS]... [FILES]...

This is just a test file

to test all possible
command line type options.

In ggo files comments start with # and end at EOL

  -h, --help                    Print help and exit
      --detailed-help           Print help, including all details and hidden
                                  options, and exit
      --full-help               Print help, including hidden options, and exit
  -V, --version                 Print version and exit

  -s, --string=STRING            string option
  -i, --int=INT                 int option
  -S, --short=SHORT             short option
  -l, --long=LONG               long option
  -f, --float=FLOAT             float option
  -d, --double=DOUBLE           double option
  -D, --longdouble=LONGDOUBLE   longdouble option
  -L, --longlong=LONGLONG       longlong option
  -F, --flag                    flag option  (default=on)
  -u, --function                function option
      --no-short                no short option
      --opt-arg[=STRING]        option with optional arg
  -o, --opt-arg-short[=STRING]  option with optional arg (short)
  -r, --required=STRING         required option (mandatory)

Before the dependant option there is a hidden option, so it shouldn't be
visible in the output of --help, but it will be visible in the output of
--full-help.

  -H, --hidden=INT              hidden option
  -A, --dependant=STRING        option that depends on opt-arg

This is a text line just to write something in the output

Notice that a text line can contain line breaks, just like this very text, and
that, just like all the other texts, it is wrapped by gengetopt automatically
if it's too long.

Moreover, text can be specified more than once in the input file.

      --very-very-long-option=STRING
                                the name of this option is long enough to make
                                  this description begin on a new line
  -y, --assume-multimeth-virtual
                                the name of this option is just as long as the
                                  maximum allowed, so this description begin on
                                  a new line
      --file-save=STRING        save the passed options into a file

A text after all options.
*** test_all_opts --detailed-help
test_all_opts 1.0

This text is printed after the version during --version
this is a test this is a test this is a test this is a test this is a test this
is a test this is a test this is a test this is a test this is a test!

This is just a gengetopt's test file

Usage: test_all_opts [OPTIONS]... [FILES]...

This is just a test file

to test all possible
command line type options.

In ggo files comments start with # and end at EOL

  -h, --help                    Print help and exit
      --detailed-help           Print help, including all details and hidden
                                  options, and exit
      --full-help               Print help, including hidden options, and exit
  -V, --version                 Print version and exit

  -s, --string=STRING            string option
  -i, --int=INT                 int option
  -S, --short=SHORT             short option
  -l, --long=LONG               long option
  -f, --float=FLOAT             float option
  -d, --double=DOUBLE           double option
  -D, --longdouble=LONGDOUBLE   longdouble option
  -L, --longlong=LONGLONG       longlong option
  -F, --flag                    flag option  (default=on)
  -u, --function                function option
  
  a `function' option is basically an option with no argument.  It can be used,
  e.g., to specify a specific behavior for a program.

  Well, this further explanation is quite useless, but it's only to show an
  example of an option with details, which will be printed only when
  --detailed-help is given at the command line.

      --no-short                no short option
      --opt-arg[=STRING]        option with optional arg
  -o, --opt-arg-short[=STRING]  option with optional arg (short)
  -r, --required=STRING         required option (mandatory)
  NOTICE: This option is required, so, unless you specify (-h)--help or
  (-V)--version, you must always specify this option (and its argument) at
  command line.

Before the dependant option there is a hidden option, so it shouldn't be
visible in the output of --help, but it will be visible in the output of
--full-help.

  -H, --hidden=INT              hidden option
  -A, --dependant=STRING        option that depends on opt-arg

This is a text line just to write something in the output

Notice that a text line can contain line breaks, just like this very text, and
that, just like all the other texts, it is wrapped by gengetopt automatically
if it's too long.

Moreover, text can be specified more than once in the input file.

      --very-very-long-option=STRING
                                the name of this option is long enough to make
                                  this description begin on a new line
  -y, --assume-multimeth-virtual
                                the name of this option is just as long as the
                                  maximum allowed, so this description begin on
                                  a new line
      --file-save=STRING        save the passed options into a file

A text after all options.
*** test_no_handle_help --detailed-help
####################
# HEADER
####################
test_no_handle_help 1.0

Usage: test_no_handle_help [OPTIONS]... [FILES]...

  -h, --help           Print help and exit
      --detailed-help  Print help, including all details and hidden options,
                         and exit
  -V, --version        Print version and exit
      --height=INT     this is the description of height
  These are the details of option height
      --vavoom=STRING  this is the description of vavoom
####################
# FOOTER
####################
test_all_opts 1.0

This is just a gengetopt's test file

Usage: test_all_opts -rSTRING|--required=STRING [-h|--help] [--detailed-help]
         [--full-help] [-V|--version] [-sSTRING|--string=STRING]
         [-iINT|--int=INT] [-SSHORT|--short=SHORT] [-lLONG|--long=LONG]
         [-fFLOAT|--float=FLOAT] [-dDOUBLE|--double=DOUBLE]
         [-DLONGDOUBLE|--longdouble=LONGDOUBLE]
         [-LLONGLONG|--longlong=LONGLONG] [-F|--flag] [-u|--function]
         [--no-short] [--opt-arg=STRING] [-oSTRING|--opt-arg-short=STRING]
         [-ASTRING|--dependant=STRING] [--very-very-long-option=STRING]
         [-y|--assume-multimeth-virtual] [--file-save=STRING]

This is just a test file

to test all possible
command line type options.

In ggo files comments start with # and end at EOL

  -h, --help                    Print help and exit
      --detailed-help           Print help, including all details and hidden
                                  options, and exit
      --full-help               Print help, including hidden options, and exit
  -V, --version                 Print version and exit

  -s, --string=STRING            string option
  -i, --int=INT                 int option
  -S, --short=SHORT             short option
  -l, --long=LONG               long option
  -f, --float=FLOAT             float option
  -d, --double=DOUBLE           double option
  -D, --longdouble=LONGDOUBLE   longdouble option
  -L, --longlong=LONGLONG       longlong option
  -F, --flag                    flag option  (default=on)
  -u, --function                function option
      --no-short                no short option
      --opt-arg[=STRING]        option with optional arg
  -o, --opt-arg-short[=STRING]  option with optional arg (short)
  -r, --required=STRING         required option

Before the dependant option there is a hidden option, so it shouldn't be
visible in the output of --help, but it will be visible in the output of
--full-help.

  -A, --dependant=STRING        option that depends on opt-arg

This is a text line just to write something in the output

Notice that a text line can contain line breaks, just like this very text, and
that, just like all the other texts, it is wrapped by gengetopt automatically
if it's too long.

Moreover, text can be specified more than once in the input file.

      --very-very-long-option=STRING
                                the name of this option is long enough to make
                                  this description begin on a new line
  -y, --assume-multimeth-virtual
                                the name of this option is just as long as the
                                  maximum allowed, so this description begin on
                                  a new line
      --file-save=STRING        save the passed options into a file

A text after all options.
test_all_opts 1.0

This is just a gengetopt's test file

Usage: test_all_opts -rSTRING|--required=STRING [-h|--help] [--detailed-help]
         [--full-help] [-V|--version] [-sSTRING|--string=STRING]
         [-iINT|--int=INT] [-SSHORT|--short=SHORT] [-lLONG|--long=LONG]
         [-fFLOAT|--float=FLOAT] [-dDOUBLE|--double=DOUBLE]
         [-DLONGDOUBLE|--longdouble=LONGDOUBLE]
         [-LLONGLONG|--longlong=LONGLONG] [-F|--flag] [-u|--function]
         [--no-short] [--opt-arg=STRING] [-oSTRING|--opt-arg-short=STRING]
         [-ASTRING|--dependant=STRING] [--very-very-long-option=STRING]
         [-y|--assume-multimeth-virtual] [--file-save=STRING]

This is just a test file

to test all possible
command line type options.

In ggo files comments start with # and end at EOL

  -h, --help                    Print help and exit
      --detailed-help           Print help, including all details and hidden
                                  options, and exit
      --full-help               Print help, including hidden options, and exit
  -V, --version                 Print version and exit

  -s, --string=STRING            string option
  -i, --int=INT                 int option
  -S, --short=SHORT             short option
  -l, --long=LONG               long option
  -f, --float=FLOAT             float option
  -d, --double=DOUBLE           double option
  -D, --longdouble=LONGDOUBLE   longdouble option
  -L, --longlong=LONGLONG       longlong option
  -F, --flag                    flag option  (default=on)
  -u, --function                function option
      --no-short                no short option
      --opt-arg[=STRING]        option with optional arg
  -o, --opt-arg-short[=STRING]  option with optional arg (short)
  -r, --required=STRING         required option

Before the dependant option there is a hidden option, so it shouldn't be
visible in the output of --help, but it will be visible in the output of
--full-help.

  -H, --hidden=INT              hidden option
  -A, --dependant=STRING        option that depends on opt-arg

This is a text line just to write something in the output

Notice that a text line can contain line breaks, just like this very text, and
that, just like all the other texts, it is wrapped by gengetopt automatically
if it's too long.

Moreover, text can be specified more than once in the input file.

      --very-very-long-option=STRING
                                the name of this option is long enough to make
                                  this description begin on a new line
  -y, --assume-multimeth-virtual
                                the name of this option is just as long as the
                                  maximum allowed, so this description begin on
                                  a new line
      --file-save=STRING        save the passed options into a file

A text after all options.
test_modes 1.0

Usage: test_modes [-h|--help] [-V|--version] [-N|--no-mode] [--no-mode2=STRING]
  or : test_modes -d|--optd [--optc]
  or : test_modes -ASTRING|--optA=STRING [-a|--opta]
         [-MSTRING|--optAmul=STRING] [-b|--optb]
  or : test_modes [-mINT|--mopt=INT]

  -h, --help              Print help and exit
  -V, --version           Print version and exit

some non mode options:
  -N, --no-mode           a generic option not beloging to any mode
      --no-mode2=STRING   another generic option not beloging to any mode

some modes just for testing:

 Mode: mode1
  any option of this mode is in contrast with any option of the other mode
  Notice that this description is quite long so it may spawn many lines...
  fortunately gengetopt will wrap it for you :-)
  -a, --opta              string a
  -A, --optA[=STRING]     string A
  -M, --optAmul[=STRING]  string M
  -b, --optb              string b

 Mode: mode 2
      --optc              string c
  -d, --optd              string d

 Mode: my mode
  -m, --mopt=INT          option of my mode
test_all_opts 1.0

This is just a gengetopt's test file

Usage: test_all_opts -rSTRING|--required=STRING [-h|--help] [--detailed-help]
         [--full-help] [-V|--version] [-sSTRING|--string=STRING]
         [-iINT|--int=INT] [-SSHORT|--short=SHORT] [-lLONG|--long=LONG]
         [-fFLOAT|--float=FLOAT] [-dDOUBLE|--double=DOUBLE]
         [-DLONGDOUBLE|--longdouble=LONGDOUBLE]
         [-LLONGLONG|--longlong=LONGLONG] [-F|--flag] [-u|--function]
         [--no-short] [--opt-arg=STRING] [-oSTRING|--opt-arg-short=STRING]
         [-ASTRING|--dependant=STRING] [--very-very-long-option=STRING]
         [-y|--assume-multimeth-virtual] [--file-save=STRING]

This is just a test file

to test all possible
command line type options.

In ggo files comments start with # and end at EOL

  -h, --help                    Print help and exit
      --detailed-help           Print help, including all details and hidden
                                  options, and exit
      --full-help               Print help, including hidden options, and exit
  -V, --version                 Print version and exit

  -s, --string=STRING            string option
  -i, --int=INT                 int option
  -S, --short=SHORT             short option
  -l, --long=LONG               long option
  -f, --float=FLOAT             float option
  -d, --double=DOUBLE           double option
  -D, --longdouble=LONGDOUBLE   longdouble option
  -L, --longlong=LONGLONG       longlong option
  -F, --flag                    flag option  (default=on)
  -u, --function                function option
  
  a `function' option is basically an option with no argument.  It can be used,
  e.g., to specify a specific behavior for a program.

  Well, this further explanation is quite useless, but it's only to show an
  example of an option with details, which will be printed only when
  --detailed-help is given at the command line.

      --no-short                no short option
      --opt-arg[=STRING]        option with optional arg
  -o, --opt-arg-short[=STRING]  option with optional arg (short)
  -r, --required=STRING         required option
  NOTICE: This option is required, so, unless you specify (-h)--help or
  (-V)--version, you must always specify this option (and its argument) at
  command line.

Before the dependant option there is a hidden option, so it shouldn't be
visible in the output of --help, but it will be visible in the output of
--full-help.

  -H, --hidden=INT              hidden option
  -A, --dependant=STRING        option that depends on opt-arg

This is a text line just to write something in the output

Notice that a text line can contain line breaks, just like this very text, and
that, just like all the other texts, it is wrapped by gengetopt automatically
if it's too long.

Moreover, text can be specified more than once in the input file.

      --very-very-long-option=STRING
                                the name of this option is long enough to make
                                  this description begin on a new line
  -y, --assume-multimeth-virtual
                                the name of this option is just as long as the
                                  maximum allowed, so this description begin on
                                  a new line
      --file-save=STRING        save the passed options into a file

A text after all options.
only_hidden 0.1

Usage: only_hidden --nonhidden=STRING --nonhidden2=STRING [-h|--help]
         [--full-help] [-V|--version]

  -h, --help               Print help and exit
      --full-help          Print help, including hidden options, and exit
  -V, --version            Print version and exit

First section.  This contains non hidden options:
      --nonhidden=STRING   non hidden
      --nonhidden2=STRING  non hidden2
only_hidden 0.1

Usage: only_hidden --nonhidden=STRING --nonhidden2=STRING [-h|--help]
         [--full-help] [-V|--version]

  -h, --help               Print help and exit
      --full-help          Print help, including hidden options, and exit
  -V, --version            Print version and exit

First section.  This contains non hidden options:
      --nonhidden=STRING   non hidden
      --nonhidden2=STRING  non hidden2

Hidden section.  This contains only hidden options:
      --hidden=STRING      hidden
      --hidden2=STRING     hidden2
test align 1.0

this is just a test to check that the output of --help and --full-help are
aligned just the same

Usage: test align [OPTIONS]...

  -h, --help           Print help and exit
      --full-help      Print help, including hidden options, and exit
  -V, --version        Print version and exit

Operation modes and settings:
  
  Non-absolute pathnames are relative to the executable's directory.


 Mode: standalone
  -y, --non-hidden     non-hidden option
test align 1.0

this is just a test to check that the output of --help and --full-help are
aligned just the same

Usage: test align [OPTIONS]...

  -h, --help           Print help and exit
      --full-help      Print help, including hidden options, and exit
  -V, --version        Print version and exit
  -m, --hidden-option  This is the hidden option that is printed only with
                         --full-help; thanks to its long description we force a
                         possible different alignment for --full-help

Operation modes and settings:
  
  Non-absolute pathnames are relative to the executable's directory.


 Mode: standalone
  -y, --non-hidden     non-hidden option
required_or_optional 0.1

Usage: required_or_optional --required=STRING --non-specified=STRING
         --non-specified2=STRING [-h|--help] [-V|--version] [--optional=STRING]

  -h, --help                   Print help and exit
  -V, --version                Print version and exit

This contains options with specified required/optional:
      --required=STRING        required specified (mandatory)
      --optional=STRING        optional specified

This contains options with NON specified required/optional:
      --non-specified=STRING   non specified whether optional or required
                                 (mandatory)
      --non-specified2=STRING  non specified whether optional or required
                                 (mandatory)
required_or_optional 0.1

Usage: required_or_optional --required=STRING [-h|--help] [-V|--version]
         [--optional=STRING] [--non-specified=STRING] [--non-specified2=STRING]

  -h, --help                   Print help and exit
  -V, --version                Print version and exit

This contains options with specified required/optional:
      --required=STRING        required specified (mandatory)
      --optional=STRING        optional specified

This contains options with NON specified required/optional:
      --non-specified=STRING   non specified whether optional or required
      --non-specified2=STRING  non specified whether optional or required
test strict hidden 1.0

This gengetopt configuration fileis intended to check that the --strct-hidden
works as expected. If it doesnt work, you will see output written in upper case
that says you shouldn't \ be seeing that output.

Usage: test strict hidden [-h|--help] [--detailed-help] [-V|--version]
         [-a|--option1] [--option2] [--option3] [-c|--option4]

  -h, --help           Print help and exit
      --detailed-help  Print help, including all details and hidden options,
                         and exit
  -V, --version        Print version and exit
  -a, --option1        (test option 1)
      --option2        (test option 2)
      --option3        (test option 3, with details)
  -c, --option4        (test option 4)
test strict hidden 1.0

This gengetopt configuration fileis intended to check that the --strct-hidden
works as expected. If it doesnt work, you will see output written in upper case
that says you shouldn't \ be seeing that output.

Usage: test strict hidden [-h|--help] [--detailed-help] [-V|--version]
         [-a|--option1] [--option2] [--option3] [-c|--option4]

  -h, --help           Print help and exit
      --detailed-help  Print help, including all details and hidden options,
                         and exit
  -V, --version        Print version and exit
  -a, --option1        (test option 1)
      --option2        (test option 2)
      --option3        (test option 3, with details)
  ...just some details
  -c, --option4        (test option 4)