Given config.yaml
:
APP_ID: APP158
APP_NAME: "My Application"
And process-config.sh
which reads the YAML entries and converts them to BASH syntax of KEY=VALUE
in order to be set as environment variables:
#!/bin/bash
export $(yq e "to_entries | map(.key + \"=\" + .value) | join(\" \")" config.yaml)
echo $APP_ID
echo $APP_NAME
The following output is produced:
APP158
My
How do I retain the quotes around APP_NAME
's values so that its value isn't truncated (as shown in output)?
You may have issues with the overall concept. Assume that you successfully keep the quotes around
"My Application"
, the string you are trying to construct will do the same thing in Bash.If you try:
You can see that adding
"My Application"
in quotes does not fix the problem if you are just usingexport
.However, if you use
source
to read a crafted export command, you can get what you are looking for:The easiest way to do this might be in Ruby or Perl or jq or yq where you can escape shell meaningful words.
An example in Ruby (I assume Perl, jq, yq are the same result...):
Then: