mirror of
https://github.com/joho/godotenv.git
synced 2025-05-31 11:42:15 +00:00
6 lines
114 B
Bash
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}
|