mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 12:57:58 +02:00
13 lines
230 B
Plaintext
13 lines
230 B
Plaintext
# this works as it should, but with a warning
|
|
foo=$(cat <<EOF
|
|
hi
|
|
EOF)
|
|
echo $foo
|
|
unset -v foo
|
|
# it's only the space before the paren that makes this an error
|
|
# when I fix it, it will show up here
|
|
foo=$(cat <<EOF
|
|
hi
|
|
EOF )
|
|
echo $foo
|