From ba301b0e5b26d2c568d2c672d0eab0d154b0b98e Mon Sep 17 00:00:00 2001 From: Simon Rieger Date: Mon, 26 Dec 2016 17:43:05 +0100 Subject: [PATCH] besseres english :D --- shellinabox_sshwrapper.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shellinabox_sshwrapper.sh b/shellinabox_sshwrapper.sh index e0d77d2..876ab34 100644 --- a/shellinabox_sshwrapper.sh +++ b/shellinabox_sshwrapper.sh @@ -10,14 +10,14 @@ read -p "SSH remote username: " username; # if [ "$puplic" == "y" ]; then - read -p "Why it the public_key?: " key; + read -p "How is your public_key?: " key; echo $key > ~/.ssh/id_rsa.pub; rm ~/.ssh/id_rsa; - echo "Give youre id her ein and when youre ready give finish ein."; + echo "Enter your private id here and press the enter key for a new line and when you are done confirm with finish !!!"; while [ "$id" != "finish" ]; do - read -p "Why it the id_rsa key?: " id; + read -p "How is your id_rsa key?: " id; echo $id >> ~/.ssh/id_rsa; done exec ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -p $port $username@$host;