Skip to content

Instantly share code, notes, and snippets.

@ChristophP
Last active July 16, 2020 15:00
Show Gist options
  • Save ChristophP/c3405cbd70cfecaff7c0494c1ab0352b to your computer and use it in GitHub Desktop.
Save ChristophP/c3405cbd70cfecaff7c0494c1ab0352b to your computer and use it in GitHub Desktop.
Streaming to an application in shell using output grouping
{ 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