busybox/shell/ash_test/ash-heredoc/heredoc9.tests

10 lines
104 B
Plaintext
Executable File

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