#!/usr/bin/env bash # Renders tests/integration/integration_config.yml set -e set -o pipefail set -u function main() { readonly template="$1"; shift readonly content="$(cat "$template")" eval "echo \"$content\"" } main "$@"