mirror of
https://codeberg.org/scip/Config-General.git
synced 2025-12-17 04:31:00 +01:00
16 lines
325 B
Plaintext
16 lines
325 B
Plaintext
|
|
# variable interpolation test
|
||
|
|
|
||
|
|
<vars>
|
||
|
|
base = /usr
|
||
|
|
uid = 501
|
||
|
|
</vars>
|
||
|
|
|
||
|
|
<etc>
|
||
|
|
dir = $base/conf # $base should not be interpolated
|
||
|
|
base = /usr/local # set $base to a new value in this scope
|
||
|
|
log = ${base}/log/logfile # use braces
|
||
|
|
<users>
|
||
|
|
home = $base/home/max # $base should be interpolated
|
||
|
|
</users>
|
||
|
|
</etc>
|