bashrcd/password-store.sh

15 lines
306 B
Bash

# vim: syn=sh ts=4 sts=4 sw=4 smartindent expandtab autoindent ff=unix
if [ -n "$(which pass 2>/dev/null)" ]; then
pass-push-all() {
for __pass_remote__ in $(pass git remote); do
pass git push $__pass_remote__ main
done
}
alias 'pass-pa'='pass-push-all'
alias passpa='pass-push-all'
fi