I am currently working on it, the macro will be named (shell-expr) and replace the current experimental (shell-test)
Now you can write
(import (schemesh all)) (shell-expr (lisp-expression-writing-to-sh-fd-stdout)) | some-shell-command-and-args | (shell-expr (lisp-expression-reading-from-sh-fd-stdin))
(fd-write (sh-fd-stdout) (string->utf8b "hello\n"))
(display (utf8b-bytespan->string (fd-read-until-eof (sh-fd-stdin))))
Now you can write
An example of such expressions is: For writing to sh-fd-stdout, For reading from sh-fd-stdin,