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 }