blob: 87c0405b11d6f5fba1e018047a7c2fb5b03b73f0 (
plain)
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
|
# Comment followed by an empty line.
option-double-quotes = "value double quotes"
option-single-quotes = 'value single quotes'
option-space = value words space
option-dupe=value1
option-name=value-name
# Indented comment.
option-indent = value-indent
option-equal=value-equal=subvalue-equal
option-noequal value-noequal
option-dupe=value2
option-simple
# Fully spelled out options.
--option-dash=value-dash
--option-dupe=value3
# Long option with one character name.
l=v
# Short option.
-o=vd
-s
|