brush-shell 0.4.0

Rust-implemented shell focused on POSIX and bash compatibility
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
name: "Builtins: echo"
cases:
  - name: "echo with only --"
    stdin: echo --

  - name: "echo with -- and args"
    stdin: echo -- -1 --"aaa" ?^1as-

  - name: "echo -e"
    stdin: |
      echo -e "1. \x65" | hexdump -C
      echo -e "2. \x{65}" | hexdump -C