From de24b379ee5d4682feda68b63419868a752dbc9c Mon Sep 17 00:00:00 2001 From: David Pilato Date: Wed, 4 Feb 2015 17:11:56 +0100 Subject: [PATCH] Script examples should escape special chars --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 42e165bec44..c25f56e8ef3 100644 --- a/README.md +++ b/README.md @@ -177,7 +177,7 @@ azure vm create azure-elasticsearch-cluster \ --vm-size extrasmall \ --ssh 22 \ --ssh-cert /tmp/azure-certificate.pem \ - elasticsearch password1234!! + elasticsearch password1234\!\! ``` You should see something like: @@ -327,7 +327,7 @@ azure vm create azure-elasticsearch-cluster \ --vm-size extrasmall \ --ssh 22 \ --ssh-cert /tmp/azure-certificate.pem \ - elasticsearch password1234!! + elasticsearch password1234\!\! ``` > **Note:** It could happen that azure changes the endpoint public IP address. @@ -352,7 +352,7 @@ for x in $(seq 2 10) --ssh $((21 + $x)) \ --ssh-cert /tmp/azure-certificate.pem \ --connect \ - elasticsearch password1234!! + elasticsearch password1234\!\! done ```