mirror of
https://github.com/albfan/bash-ini-parser.git
synced 2025-04-19 13:22:14 +03:00
Values in an array in an output ini file must be without inverted commas. Otherwise the values are considered as a multiword value. It is the same way as in whitespace.ini (t0001) where var4 is a multiword value and var5 is an array. + 10 points for word "pivo" in whitespace.ini. I am Czech. :-)
14 lines
168 B
Plaintext
14 lines
168 B
Plaintext
[sec1]
|
|
var1="foo"
|
|
var2="hoge"
|
|
var3="fuga"
|
|
var4="pivo"
|
|
[sec2]
|
|
var1="bar "
|
|
var2=" foo"
|
|
var3="eco"
|
|
var4="piyo baz qux"
|
|
;var5 is an array
|
|
var5=foo bar baz hoge
|
|
var6="hoge"
|