Files
bun.sh/examples/cat.ts
Jarred Sumner 69653729f0 tweak examples
2022-04-06 06:14:04 -07:00

7 lines
164 B
TypeScript

import { resolve } from "path";
const { write, stdout, file } = Bun;
const { argv } = process;
const path = resolve(argv.at(-1));
await write(stdout, file(path));