deno/cli/tests/testdata/cat.ts

11 lines
263 B
TypeScript

import { copy } from "../../../test_util/std/streams/copy.ts";
async function main() {
for (let i = 1; i < Deno.args.length; i++) {
const filename = Deno.args[i];
const file = await Deno.open(filename);
await copy(file, Deno.stdout);
}
}
main();