Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
bun
$
import { $ } from "bun"; await $`echo Hello, world!`; // => "Hello, world!"
import { $ } from "bun"; const output = await $`ls -l`.text(); console.log(output);
lines
import { $ } from "bun"; for await (const line of $`ls -l`.lines()) { console.log(line); }