File SystemProcessRead stdout from a child processWhen you spawn a child process with Bun.spawn() , proc.stdout is a ReadableStream of the child's stdout .Copy MarkdownOpenRead stderr from a child processWhen you spawn a child process with Bun.spawn() , it inherits the stderr of the spawning process. To read and handle stderr instead, set the stderr option toSpawn a child processUse Bun.spawn() to spawn a child process.