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