Skip to content

Commit 902a5ed

Browse files
committed
docs: Change README.md
1 parent 1451923 commit 902a5ed

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ Base85 (Adobe) encode or decode standard input, to standard output.
55
### CLI
66
- Use Deno
77
```bash
8-
$ deno install --force -n base85 https://github.com/redpeacock78/base85/raw/v0.0.1/cli.ts
8+
$ deno install --force -n base85 https://github.com/redpeacock78/base85/raw/v0.0.2/cli.ts
99
$ base85 -V
1010
```
1111
- Download Binary
1212
```bash
1313
# Linux_x86
14-
$ curl -sL https://github.com/redpeacock78/base85/releases/download/v0.0.1/base85-linux-x86 -o /usr/local/bin/base85
14+
$ curl -sL https://github.com/redpeacock78/base85/releases/download/v0.0.2/base85-linux-x86 -o /usr/local/bin/base85
1515
$ chmod +x /usr/local/bin/base85
1616
$ base85 -V
1717
```
@@ -31,7 +31,7 @@ Base85 (Adobe) encode or decode standard input, to standard output.
3131
```
3232
### Deno module
3333
```typescript
34-
import { base85encode, base85decode } from "https://github.com/redpeacock78/base85/raw/v0.0.1/mod.ts";
34+
import { base85encode, base85decode } from "https://github.com/redpeacock78/base85/raw/v0.0.2/mod.ts";
3535

3636
console.log(base85encode("Hello World."));
3737
console.log(base85decode('<~87cURD]i,"Ebo8=zz~>'));

0 commit comments

Comments
 (0)