aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-heredoc/heredoc9.tests
blob: 96c227cc142579398cf4166890abb65698262ab7 (plain)
1
2
3
4
5
6
7
8
9
echo hello >greeting
cat <<EOF &&
$(cat greeting)
EOF
{
	echo $?
	cat greeting
} >/dev/null
rm greeting