summaryrefslogtreecommitdiff
path: root/std/examples/cat.ts
blob: 04c40034bf55c2ae7d39f31ee08cf047f6e89de1 (plain)
1
2
3
4
5
6
7
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
const filenames = Deno.args;
for (const filename of filenames) {
  const file = await Deno.open(filename);
  await Deno.copy(file, Deno.stdout);
  file.close();
}