Last active
March 2, 2022 11:36
-
-
Save Ajnasz/049a2556a1657907816e935cf789ad2e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
PATH_TO_ACCOUNT="/path/to/account" | |
PATH_TO_FILE="/path/to/file" | |
ACCOUNT_NAME="[email protected]" | |
ISSUER="Somewhere Org" | |
KEEPASS_PASSWORD="the secret password" | |
echo "$KEEPASS_PASSWORD" | keepassxc-cli show -a "TOTP Seed" "$PATH_TO_FILE" "$PATH_TO_ACCOUNT" | grep -v "Insert password" | while read i;do echo "otpauth://totp/$ACCOUNT_NAME?secret=$i&issuer=$ISSUER" | qr;done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment