EnvFile icon indicating copy to clipboard operation
EnvFile copied to clipboard

Feature request: support for interpolation

Open GigiusB opened this issue 3 years ago • 1 comments

It would be nice if interpolation was supported

Example:

MY_FIREWALL=10.10.0.1
MY_FRONTEND=192.168.10.1
MY_BACKEND=192.168.10.1
MY_HOSTS="${MY_FIREWALL},${MY_FRONTEND},${MY_BACKEND}"

should give:

$ echo $MY_HOSTS
10.10.0.1,192.168.10.1,192.168.10.1

GigiusB avatar Feb 07 '21 09:02 GigiusB

Don't we have this already as a feature toggle? https://github.com/ashald/EnvFile#usage

ashald avatar Sep 02 '21 04:09 ashald