10 lines
220 B
Bash
10 lines
220 B
Bash
#
|
|
NAME=example
|
|
# Multiline values shouldn't break things
|
|
export CONTENT=This is a long message\
|
|
that may take one or more lines to parse\
|
|
but should still work without issue
|
|
|
|
# This shouldn't throw an error
|
|
UNUSED=
|