1 # This is comment.
2 #################################################################################
3 ## @INCLUDE other.conf => (include other.conf)
4 ## base = /tmp => base = /tmp
5 ## log = ${base}/log => log = /tmp/logVariable
6 ## host = ${!/bin/hostname -s} => host = www.qdecoder.org
7 ## path = ${%PATH} => path = /usr/bin:/usr/sbin
8 ## #hmm = this is comments => (skip comment)
9 ################################################################################
10
11 # include default configuration
12 @INCLUDE config_default.conf
13
14 ## overriding default configuration
15 HOST = www.qdecoder.org
16
17 ## advanced samples
18 EX1 = Hello World!
19 EX2 = Using Variable : ${PROTOCOL}://${HOST}:${PORT}
20 EX3 = Environment Variable : ${%REMOTE_ADDR}
21 EX4 = Command Example : ${!date -u}
22 EX6 = Command Example : ${!printf "${%SCRIPT_NAME}"}