From 73bcf5d3a2877c03f976613c5d099decb5c4bdd4 Mon Sep 17 00:00:00 2001 From: redpeacock78 Date: Fri, 12 Nov 2021 16:17:39 +0900 Subject: [PATCH] docs: Change README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index acb0d92..ba1262c 100644 --- a/README.md +++ b/README.md @@ -7,13 +7,13 @@ Base85 (Ascii85 with Adobe Escape Sequence) encode or decode FILE, or standard i **🎉 It can now also handle binaries!** - Use Deno ```bash - $ deno install --force -n base85 https://github.com/redpeacock78/base85/raw/v0.0.6/cli.ts + $ deno install --force -n base85 https://github.com/redpeacock78/base85/raw/v0.0.7/cli.ts $ base85 -V ``` - Download Binary ```bash # Linux_x86 - $ curl -sL https://github.com/redpeacock78/base85/releases/download/v0.0.6/base85-linux-x86 -o /usr/local/bin/base85 + $ curl -sL https://github.com/redpeacock78/base85/releases/download/v0.0.7/base85-linux-x86 -o /usr/local/bin/base85 $ chmod +x /usr/local/bin/base85 $ base85 -V ``` @@ -33,7 +33,7 @@ Base85 (Ascii85 with Adobe Escape Sequence) encode or decode FILE, or standard i ``` ### Deno module ```typescript -import { base85encode, base85decode } from "https://github.com/redpeacock78/base85/raw/v0.0.6/mod.ts"; +import { base85encode, base85decode } from "https://github.com/redpeacock78/base85/raw/v0.0.7/mod.ts"; console.log(base85encode(new TextEncoder().encode("Hello World."))); Deno.stdout.writeSync(base85decode('<~87cURD]i,"Ebo8=zz~>'));