busybox/shell/ash_test/ash-heredoc/heredoc9.tests
Denys Vlasenko bb963bda62 shell: syncronize ash and hush heredoc3.tests
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2017-07-06 18:19:35 +02:00

10 lines
104 B
Plaintext
Executable File

echo hello >greeting
cat <<EOF &&
$(cat greeting)
EOF
{
echo $?
cat greeting
} >/dev/null
rm greeting