hello,
I need to set dynamic variable from an .ini file in a shell script.
Assume the input file is in
using :
file="install.ini" while IFS== read -r f v do eval "$f=$v" done <"$file"
did the trick.