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

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

Version Info

Tagged at
11 months ago