File SystemProcessSpawn a child processUse Bun.spawn() to spawn a child process.Copy MarkdownOpenRead stdout from a child processWhen you spawn a child process with Bun.spawn() , proc.stdout is a ReadableStream of the child's stdout .Read from stdinIn Bun, the console object is an AsyncIterable that yields lines from stdin .