Hello,
Thanks for the great library! I'm new to Gleam, and this seems very useful to program abstractions around shell commands and such.
I'd like to ask, are there any plans for tools to work with stdin? In particular:
- Being able to provide a certain string (or bytes) as the full standard input to a program;
- Being able to redirect all
stdin received by the Gleam program to the input of the program being run (something akin to LetBeStdin);
- Being able to pipe a program's
stdout to another program's stdin in an efficient manner (could be platform-restricted if needed). This could require a deeper rework (to e.g. use some sort of Process type), but I still think that could be very handy when working with e.g. lots of data in the shell.
Thanks in advance!
Hello,
Thanks for the great library! I'm new to Gleam, and this seems very useful to program abstractions around shell commands and such.
I'd like to ask, are there any plans for tools to work with
stdin? In particular:stdinreceived by the Gleam program to the input of the program being run (something akin toLetBeStdin);stdoutto another program'sstdinin an efficient manner (could be platform-restricted if needed). This could require a deeper rework (to e.g. use some sort ofProcesstype), but I still think that could be very handy when working with e.g. lots of data in the shell.Thanks in advance!