From f96e1c474fef6c7eda6ed59e316ad65fe56c90b2 Mon Sep 17 00:00:00 2001 From: Damir Ibragimov Date: Wed, 13 Sep 2023 20:56:52 +0000 Subject: [PATCH] Update totp.sh --- totp.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/totp.sh b/totp.sh index 77017dc..075a3fe 100644 --- a/totp.sh +++ b/totp.sh @@ -3,11 +3,13 @@ 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 "#####################################" docker exec -it totp-docker totp $SECRETNAME }