brush-shell 0.4.0

Rust-implemented shell focused on POSIX and bash compatibility
Documentation
name: "List"
cases:
  - name: "Ignore single quote in comment in list"
    stdin: |
      (
        # I'm
        echo "Batman"
      )

  - name: "Ignore double quote in comment in list"
    stdin: |
      (
        # This " is not being
        echo "parsed"
      )

  - name: "Ignore parentheses in comment in list"
    stdin: |
      (
        # :(
        echo "Sad"
      )

  - name: "Ignore dollar in comment in list"
    stdin: |
      (
        #               $
        echo "Mr. Crabs ^"
      )