deno.land / std@0.157.0 / examples / cat.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
/** An implementation of [`cat`](https://en.wikipedia.org/wiki/Cat_(Unix)). * * @module */
import { copy } from "../streams/conversion.ts";const filenames = Deno.args;for (const filename of filenames) { const file = await Deno.open(filename); await copy(file, Deno.stdout); file.close();}
std

Version Info

Tagged at
a year ago