summaryrefslogtreecommitdiff
path: root/test/subst-vars.conf
blob: 067e7da71da2c35d3ba58a4cc6e15da0b84c843e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pre_set $string 'This is a trap';
pre_set $a Bare\ \$string\;;
pre_set $b 'Single-quoted \$string;';
pre_set $c "Double-quored \$string;";
a bare $a;
b bare $b;
c bare $c;
a squoted '$a';
b squoted '$b';
c squoted '$c';
a dquoted "$a";
b dquoted "$b";
c dquoted "$c";
all bare $a$b$c;
all squoted '$a$b$c';
all dquoted "$a$b$c";
bare joined with x ${a}x${b}x$c;