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

10 lines
104 B
Plaintext
Raw Normal View History

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