From c69c4e404daca8977e0df966291921675066ac51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Pi=C3=B1a?= Date: Mon, 25 Jan 2021 11:55:30 -0800 Subject: [PATCH] Remove shell prompt character Currently, our copy-able snippets have a shell prompt. When someone clicks on the copy button, the shell prompt gets copied along with the command we want copied. This removes the shell prompt so that users don't have to edit that out themselves when they paste one of our commands. --- nats-tools/mkpasswd.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nats-tools/mkpasswd.md b/nats-tools/mkpasswd.md index 267df17..0da545f 100644 --- a/nats-tools/mkpasswd.md +++ b/nats-tools/mkpasswd.md @@ -9,15 +9,15 @@ A utility for creating `bcrypt` hashes is included with the nats-server distribu If you have [go installed](https://golang.org/doc/install), you can easily install the `mkpasswd` tool by doing: ```text -> go get github.com/nats-io/nats-server/util/mkpasswd +go get github.com/nats-io/nats-server/util/mkpasswd ``` Alternatively, you can: ```text -> git clone git@github.com:nats-io/nats-server -> cd nats-server/util/mkpasswd -> go install mkpasswd.go +git clone git@github.com:nats-io/nats-server +cd nats-server/util/mkpasswd +go install mkpasswd.go ``` ## Generating bcrypted passwords