memote
memote copied to clipboard
memote should accept standard input
By accepting a model streamed into memote from standard input, memote can make use of the power of unix piping and it would be trivial to use the docker image by piping in a model and piping out the report.
What do you mean by standard input?
Every unix program by default has three streams: input, output, and error. When you pipe something into another program this happens via the input, for example, cat password.txt | passwd
. In this example the output of cat
is piped into the input of passwd
.
Ah I see, you're adding support for piping so memote can be better utilized in workflows! Thanks for the explanation Moritz! And yes, I agree, this a is a very useful feature to have