[pass] Bash script to import passwords from Firefox password manager
shujie zhang
zhang.shujie87 at gmail.com
Thu Nov 5 21:00:18 CET 2015
Hi,
I started to use Pass this week.
I wrote a bash script to import passwords from Firefox.
You export cvs file by using a extention called "Password Exporter" and
then use this script to import passwords from the cvs file.
##################################
#!/bin/bash
#
# Copyright (C) 2013 Shujie Zhang <zhang.shujie87 at gmail.com>. All Rights
Reserved.
# This file is licensed under the GPLv3+. Please see COPYING for more
information.
#
# Usage:
# Export cvs file from firefox by using extention "Password Exporter"
# https://addons.mozilla.org/en-US/firefox/addon/password-exporter/
#
# You can test run it to check if bash syntax are OK:
# ./firefox2pass.sh testrun CVS_FILE
# Import to pass run as :
# ./firefox2pass.sh import CVS_FILE
# Feature:
# * If username do not exist, use NONAME as username
args=("$@")
helptext=$'Usage:
You can test run it to check if bash syntax are OK:
./firefox2pass.sh testrun CVS_FILE
Import to pass run as :
./firefox2pass.sh import CVS_FILE
Feature:
* If username do not exist, use NONAME as username'
main(){
cat ${args[1]} | tail -n +3 | cut -f 1,2,3 -d , | sed "s/http.*\:\/\///g" |
sed "s/\"//g" |awk -F , -O '{ OFS = ","; print $1, $2, $3, $3 }' | sed
"s/,,/,NONAME,/g" | sed "s/,/\//1" | sed "s/^/pass insert /g" | sed
"s/,/\n/g"
}
if [ -z "${args[1]}" ] ; then
echo "$helptext"
elif [ "${args[0]}" = "testrun" ]; then
main
elif [ "${args[0]}" = "import" ]; then
main | bash
else echo "$helptext"
fi
##########################
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.zx2c4.com/pipermail/password-store/attachments/20151105/24eb62b7/attachment.html>
More information about the Password-Store
mailing list