1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 15:24:46 -05:00

Remove prefix $ and > from manual (#2404)

This commit is contained in:
Steven 2019-05-23 20:37:34 -04:00 committed by Ryan Dahl
parent 1105982586
commit ccdab61708

View file

@ -95,13 +95,13 @@ scripts to download and install the binary.
Using Shell:
```shellsession
$ curl -fsSL https://deno.land/x/install/install.sh | sh
curl -fsSL https://deno.land/x/install/install.sh | sh
```
Using PowerShell:
```shellsession
> iwr https://deno.land/x/install/install.ps1 | iex
iwr https://deno.land/x/install/install.ps1 | iex
```
Using [Scoop](https://scoop.sh/) (windows):
@ -118,7 +118,7 @@ executable bit on Mac and Linux.
Once it's installed and in your `$PATH`, try it:
```shellsession
$ deno run https://deno.land/welcome.ts
deno run https://deno.land/welcome.ts
```
### Build from source