103 passed, 1 OK, 5 not implemented, 6 BUG, 0 failed, 0 timeouts, 0 cases skipped
zsh | 0 >$file touches a file stdout: status=1stderr: |
dash | 1 $(< $file) yields the contents of the file stdout: ['']stderr: |
dash | 2 `< $file` behaves like $(< file) stdout: []stderr: |
zsh | 3 $(< file; end) is not a special case stdout: begin 5 6 --- 5 6 end --- 5 6 5 6 ---stderr: |
zsh | 4 < file in pipeline and subshell doesn't work stdout: foo FOO endstderr: |
zsh | 8 Redirect in the middle of two assignments stdout: stderr: |
bash | 9 Redirect in assignment stdout: FILE= FOO=stderr: foo |
dash | 11 Redirect in function body is evaluated multiple times stdout: stderr: dash: 2: arithmetic expression: expecting primary: "i++" |
dash | 13 redirect bash extensions: [[ (( for (( stdout: stderr: |
mksh | 13 redirect bash extensions: [[ (( for (( stdout: stderr: |
mksh | 19 Prefix redirect for loop -- not allowed stdout: stderr: mksh: <stdin>[1]: for: not found mksh: <stdin>[2]: syntax error: 'do' unexpected |
zsh | 19 Prefix redirect for loop -- not allowed stdout: 1 2 3stderr: |