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 }