Nginx – How to fix export variables from .env in bash wrapped in quotes
This is my .env.test S3_READY_MESSAGE="s3 is ready" NGINX_READY_MESSAGE="nginx is ready" Bash to output variables $ echo $(cat ../../../.env.test | grep -o -E '^[^#]+') output: S3_READY_MESSAGE="s3 is ready" NGINX_READY_MESSAGE="nginx is ready" Bash to export variables export $(cat ../../../.env.test | grep -o…