From 07782053a92a336d6e51476ed410d40801c949d3 Mon Sep 17 00:00:00 2001 From: Damir Ibragimov Date: Wed, 13 Sep 2023 20:57:37 +0000 Subject: [PATCH] Update totp.sh --- totp.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/totp.sh b/totp.sh index 075a3fe..ad5f45f 100644 --- a/totp.sh +++ b/totp.sh @@ -3,13 +3,12 @@ addsecret() { read -p "Insert secret GUID: " SECRET read -p "Insert secret name: " SECRETNAME - echo "#####################################" docker exec -it totp-docker totp config update $SECRETNAME $SECRET } getcode() { read -p "Insert secret name: " SECRETNAME - echo "#####################################" + echo "Generated code:" docker exec -it totp-docker totp $SECRETNAME }