mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
12 lines
256 B
TypeScript
12 lines
256 B
TypeScript
|
import * as deno from "deno";
|
||
|
|
||
|
async function cat(filenames: string[]): Promise<void> {
|
||
|
for (let filename of filenames) {
|
||
|
let file = await deno.open(filename);
|
||
|
await deno.copy(deno.stdout, file);
|
||
|
file.close();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
cat(deno.args.slice(1));
|