data/method/busybox/busybox-1.36.0/shell/hush_test/hush-heredoc/heredoc9.tests

10 lines
104 B
Plaintext
Raw Normal View History

2024-01-29 10:44:43 +08:00
echo hello >greeting
cat <<EOF &&
$(cat greeting)
EOF
{
echo $?
cat greeting
} >/dev/null
rm greeting