Skip to content

Commit

Permalink
docs: Change README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
redpeacock78 committed Nov 11, 2021
1 parent ff53735 commit 407b313
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ Base85 (Adobe) encode or decode standard input, to standard output.
### CLI
- Use Deno
```bash
$ deno install --force -n base85 https://github.com/redpeacock78/base85/raw/v0.0.2/cli.ts
$ deno install --force -n base85 https://github.com/redpeacock78/base85/raw/v0.0.3/cli.ts
$ base85 -V
```
- Download Binary
```bash
# Linux_x86
$ curl -sL https://github.com/redpeacock78/base85/releases/download/v0.0.2/base85-linux-x86 -o /usr/local/bin/base85
$ curl -sL https://github.com/redpeacock78/base85/releases/download/v0.0.3/base85-linux-x86 -o /usr/local/bin/base85
$ chmod +x /usr/local/bin/base85
$ base85 -V
```
Expand All @@ -31,10 +31,10 @@ Base85 (Adobe) encode or decode standard input, to standard output.
```
### Deno module
```typescript
import { base85encode, base85decode } from "https://github.com/redpeacock78/base85/raw/v0.0.2/mod.ts";
import { base85encode, base85decode } from "https://github.com/redpeacock78/base85/raw/v0.0.3/mod.ts";

console.log(base85encode("Hello World."));
console.log(base85decode('<~87cURD]i,"Ebo8=zz~>'));
await Deno.stdout.write(base85decode('<~87cURD]i,"Ebo8=zz~>'));
```

## Contribution
Expand Down

0 comments on commit 407b313

Please sign in to comment.