1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-26 16:09:27 -05:00

fix curl.ts (#3677)

This commit is contained in:
Tomofumi Chiba 2020-01-15 23:05:22 +09:00 committed by Ry Dahl
parent 702ff4283f
commit 8a352f7260
2 changed files with 2 additions and 2 deletions

View file

@ -40,7 +40,7 @@ echo example.json | catj -
### curl - print the contents of a url to standard output ### curl - print the contents of a url to standard output
```shell ```shell
deno --allow-net=deno.land https://deno.land/std/examples/curl.ts https://deno.land/ deno --allow-net=deno.land https://deno.land/std/examples/curl.ts -- https://deno.land/
``` ```
### gist - easily create and upload Gists ### gist - easily create and upload Gists

View file

@ -1,4 +1,4 @@
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
const url_ = Deno.args[1]; const url_ = Deno.args[0];
const res = await fetch(url_); const res = await fetch(url_);
await Deno.copy(Deno.stdout, res.body); await Deno.copy(Deno.stdout, res.body);