My master password is a password phrase containing spaces. This causes an error when getting the session key.
|
session_key=$(bw unlock $bw_password --raw) |
To work around this, I had to put the $bw_password between. quotes:
session_key=$(bw unlock "$bw_password" --raw)
My master password is a password phrase containing spaces. This causes an error when getting the session key.
Bitwarden_Export/bw_export.sh
Line 57 in ff67eb3
To work around this, I had to put the
$bw_passwordbetween. quotes: