-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config2.file
34 lines (26 loc) · 1.13 KB
/
Config2.file
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
# This is a configuration file in standard configuration file format
#
# Lines beginning with a hash or a semicolon are ignored by the application
# program. Blank lines are also ignored by the application program.
#
# This version is for testing interdependent parameters
# This is the fullname parameter
FULLNAME Foo Barber
# This is a favourite fruit
FAVOURITEFRUIT "A banana named ${FULLNAME}"
# This is a boolean that should be set
NEEDSPEELING
# This boolean is commented out
; SEEDSREMOVED
# Configuration option names are not case sensitive, but configuration parameter
# data is case sensitive and may be preserved by the application program.
# An optional equals sign can be used to separate configuration parameter data
# from the option name. This is dropped by the parser.
# A configuration option may take multiple parameters separated by commas.
# Leading and trailing whitespace around parameter names and parameter data fields
# are ignored by the application program.
OTHERFAMILY Rhu Barber, Harry Barber
GREETING "Hello $OTHERFAMILY"
GREETING2 "HELLO $otherfamily"
GREETING3 "Hello ${otherfamily}"
GREETING4 "Hello ${OTHERFAMILY}"