A script to import passwords from a Bitwarden export file into the Pass password manager.
- jq
- Pass
./bw2pass.sh path/to/bitwarden_export.json
The script expects the Bitwarden export file to have the following structure to be extracted:
{
"encrypted": false,
"folders": [],
"items": [
{
"name": "App",
"login": {
"username": "name@email.com",
"password": "strongpassword"
}
}
]
}