diff --git a/README.md b/README.md index 047fda6..ecadca8 100644 --- a/README.md +++ b/README.md @@ -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 ``` @@ -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