Last active
July 16, 2020 15:00
-
-
Save ChristophP/c3405cbd70cfecaff7c0494c1ab0352b to your computer and use it in GitHub Desktop.
Streaming to an application in shell using output grouping
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ while :; do echo test; sleep 5; done } | node -e 'process.stdin.on("data", () => process.stdout.write("Peter"))' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment