Files
android_external_bash/tests/histexp7.sub
2020-12-06 15:51:17 -05:00

19 lines
213 B
Plaintext

# make sure history expansion doesn't take place while parsing command
# substitutions
set -o history
set -o histexpand
echo a
echo $( cat <<EOF
echo !!
EOF
)
echo --between--
cat <( cat <<'EOF'
echo !!
EOF
)