mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 23:34:47 -05:00
12 lines
226 B
TypeScript
12 lines
226 B
TypeScript
|
import { stdout, open, copy, args } from "deno";
|
||
|
|
||
|
async function main() {
|
||
|
for (let i = 1; i < args.length; i++) {
|
||
|
let filename = args[i];
|
||
|
let file = await open(filename);
|
||
|
await copy(stdout, file);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
main();
|