commit | bb963bda62cc8b0965a921df70dfea44c4378163 | [log] [tgz] |
---|---|---|
author | Denys Vlasenko <vda.linux@googlemail.com> | Thu Jul 06 18:19:35 2017 +0200 |
committer | Denys Vlasenko <vda.linux@googlemail.com> | Thu Jul 06 18:19:35 2017 +0200 |
tree | 80039a5ec18fefdf74c0927b0e1ca58b8bf8d82f | |
parent | 959cb6742832a3b403a5d0116088a09f33afe927 [diff] [blame] |
shell: syncronize ash and hush heredoc3.tests Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/shell/ash_test/ash-heredoc/heredoc9.tests b/shell/ash_test/ash-heredoc/heredoc9.tests new file mode 100755 index 0000000..96c227c --- /dev/null +++ b/shell/ash_test/ash-heredoc/heredoc9.tests
@@ -0,0 +1,9 @@ +echo hello >greeting +cat <<EOF && +$(cat greeting) +EOF +{ + echo $? + cat greeting +} >/dev/null +rm greeting