diff options
author | Denis Vlasenko | 2009-04-08 09:29:14 +0000 |
---|---|---|
committer | Denis Vlasenko | 2009-04-08 09:29:14 +0000 |
commit | 3dfb035d8df33e59492e78a97bf42e961ba178e4 (patch) | |
tree | 78ce918f14531d99a0b95a205a7984823ed4ad6b /shell/hush_test/hush-misc | |
parent | df6f95cedf4fe621048647f869db45daa7e5975a (diff) | |
download | busybox-3dfb035d8df33e59492e78a97bf42e961ba178e4.zip busybox-3dfb035d8df33e59492e78a97bf42e961ba178e4.tar.gz |
hush: echo \2>file fix
Diffstat (limited to 'shell/hush_test/hush-misc')
-rw-r--r-- | shell/hush_test/hush-misc/heredoc2.right | 1 | ||||
-rwxr-xr-x | shell/hush_test/hush-misc/heredoc2.tests | 1 | ||||
-rw-r--r-- | shell/hush_test/hush-misc/heredoc3.right | 1 | ||||
-rwxr-xr-x | shell/hush_test/hush-misc/heredoc3.tests | 1 | ||||
-rw-r--r-- | shell/hush_test/hush-misc/redir2.right | 1 | ||||
-rwxr-xr-x | shell/hush_test/hush-misc/redir2.tests | 2 |
6 files changed, 7 insertions, 0 deletions
diff --git a/shell/hush_test/hush-misc/heredoc2.right b/shell/hush_test/hush-misc/heredoc2.right index 66545ae..74110e3 100644 --- a/shell/hush_test/hush-misc/heredoc2.right +++ b/shell/hush_test/hush-misc/heredoc2.right @@ -6,3 +6,4 @@ moo EOF-f EOF-f f EOF-f +Ok diff --git a/shell/hush_test/hush-misc/heredoc2.tests b/shell/hush_test/hush-misc/heredoc2.tests index 19d9c96..e619bde 100755 --- a/shell/hush_test/hush-misc/heredoc2.tests +++ b/shell/hush_test/hush-misc/heredoc2.tests @@ -9,3 +9,4 @@ echo `echo Hello World` EOF-f f EOF-f EOF-f +echo Ok diff --git a/shell/hush_test/hush-misc/heredoc3.right b/shell/hush_test/hush-misc/heredoc3.right index 9b114fa..6ed517f 100644 --- a/shell/hush_test/hush-misc/heredoc3.right +++ b/shell/hush_test/hush-misc/heredoc3.right @@ -6,3 +6,4 @@ moo EOF-f EOF-f f EOF-f +Ok diff --git a/shell/hush_test/hush-misc/heredoc3.tests b/shell/hush_test/hush-misc/heredoc3.tests index 6391e49..938577a 100755 --- a/shell/hush_test/hush-misc/heredoc3.tests +++ b/shell/hush_test/hush-misc/heredoc3.tests @@ -9,3 +9,4 @@ echo `echo Hello World` EOF-f f EOF-f EOF-f +echo Ok diff --git a/shell/hush_test/hush-misc/redir2.right b/shell/hush_test/hush-misc/redir2.right new file mode 100644 index 0000000..7326d96 --- /dev/null +++ b/shell/hush_test/hush-misc/redir2.right @@ -0,0 +1 @@ +Ok diff --git a/shell/hush_test/hush-misc/redir2.tests b/shell/hush_test/hush-misc/redir2.tests new file mode 100755 index 0000000..81983ca --- /dev/null +++ b/shell/hush_test/hush-misc/redir2.tests @@ -0,0 +1,2 @@ +echo NOT SHOWN \2>/dev/null +echo Ok |