mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
6be389ce29
Note: tests are not the only part of the codebase that uses `std`. Other parts, like `tools/`, do too. So, it could be argued that this is a little misleading. Either way, I'm doing this as discussed with @mmastrac.
10 lines
261 B
TypeScript
10 lines
261 B
TypeScript
import { copy } from "../../tests/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();
|