# Test for correct handling of backslashes. # Note that some lines in each heredoc start with a tab. a=qwerty echo Quoted heredoc: cat <<"EOF1" a\ b a\\ b 123456 -$a-\t-\\-\"-\'-\`-\--\z-\*-\?- -$a-\t-\\-\"-\'-\`-\--\z-\*-\?- 123456 `echo v'-$a-\t-\\-\"-\'-\`-\--\z-\*-\?-'` 123456 $(echo v'-$a-\t-\\-\"-\'-\`-\--\z-\*-\?-') c\ EOF1 echo echo Unquoted heredoc: cat <