seep ongoing stdins #1
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
seep reads to end into the buffer, so ongoing streams cannot be seeped
I guess we need to use
io::copy
instead of just reading to end. We could have a thread/task for reading, but threading or async for such a simple program seems totally overkill.We could also have a loop that reads into a buffer with length 1, then write the buffer to all targets, but that seems costly in terms of performance
tee reads into a buffer of const size, then writes to the targets. This loops. The bufsize is not necessarily 1.