blob: 9a64c0cdba9e0b090e1972d3d6a7c8208517d5e2 (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
from subprocess import check_output
def get_pass(account):
return check_output("pass Email/" + account, shell=True).splitlines()[0]
|