A pass extension that exports given passwords in csv format
pass-export extends the pass with a export command thats exports (all/given) passwords in csv (+bitwarden) format to stdout. Also look here for other cool extensions: awesome-password-store!
pass export 1.1 - A pass extension that exports (all/given) passwords in csv format
Usage:
pass export [a | all] [b | bitwarden] [<pass-name> | <pass-dir>] [-v | --version] [-h | --help]
Provide a command to export passwords in csv format
Options:
a, all Export all passwords
b, bitwarden Export in bitwarden CSV format
-v, --version Show version information.
-h, --help Print this help message and exit.
More information may be found in the pass-export(1) man page.
From git
git clone https://github.com/dvogt23/pass-export/
cd pass-export
sudo make install
OS X
git clone https://github.com/dvogt23/pass-export/
cd pass-export
make install PREFIX=/usr/local
Requirements
pass 1.7.0
or greater.- If you do not want to install this extension as system extension, you need to enable user extension with
PASSWORD_STORE_ENABLE_EXTENSIONS=true pass
. You can create an alias in.bashrc
:alias pass='PASSWORD_STORE_ENABLE_EXTENSIONS=true pass'
Export all passwords
zx2c4@laptop ~ $ pass export a
Export all passwords in bitwarden format
zx2c4@laptop ~ $ pass export a b
Export a password dir
zx2c4@laptop ~ $ pass export social
Export a password entry
zx2c4@laptop ~ $ pass export social/twitter.com
Feedback, contributors, pull requests are welcome.
Copyright (C) 2017
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.