I was trying to export my keys and found that it's not possible in the command line using gpg --armor --export-secret-keys
I end up using something like this:
echo mypassphrase | gpg --output private_keys.backup --armor --export-secret-keys --passphrase-fd 0 --pinentry-mode loopback
Is this expected?
I was trying to export my keys and found that it's not possible in the command line using gpg --armor --export-secret-keys
I end up using something like this:
Is this expected?