blob: ba8b42bdf189ad2f7dc5f38194fea0e924cd6fab (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
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));
|