Files
LearnGO/go/pkg/mod/github.com/joho/godotenv@v1.5.1/fixtures/substitutions.env
T
2024-09-19 21:38:24 -04:00

6 lines
114 B
Bash

OPTION_A=1
OPTION_B=${OPTION_A}
OPTION_C=$OPTION_B
OPTION_D=${OPTION_A}${OPTION_B}
OPTION_E=${OPTION_NOT_DEFINED}