brush-shell 0.4.0

Rust-implemented shell focused on POSIX and bash compatibility
Documentation
1
2
3
4
5
6
7
8
9
name: "Complete commands"
cases:
  - name: "Multi-command sequence"
    stdin: |
      echo 1; echo 2; echo 3

  - name: "Semicolon-terminated sequence"
    stdin: |
      echo 1; echo 2;