Rewrites the shout CLI in Rust for better performance, with parallel test execution via rayon and the same .shout file format semantics.
10 lines
120 B
Plaintext
10 lines
120 B
Plaintext
$ echo hello
|
|
hello
|
|
|
|
$ echo one && echo two
|
|
one
|
|
two
|
|
|
|
$ echo "working directory: $(basename $PWD)"
|
|
working directory: ...
|