mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 21:07:57 +02:00
28 lines
140 B
Plaintext
28 lines
140 B
Plaintext
x=$(cat <<'EOT'
|
|
d \
|
|
g
|
|
EOT
|
|
)
|
|
|
|
echo "$x"
|
|
unset x
|
|
|
|
x=$( cat <<\EOT\
|
|
4
|
|
d \
|
|
g
|
|
EOT4
|
|
)
|
|
|
|
echo "$x"
|
|
unset x
|
|
|
|
x=$( cat <<\EOT
|
|
d \
|
|
g
|
|
EOT
|
|
)
|
|
|
|
echo "$x"
|
|
|