8 lines
188 B
Python
8 lines
188 B
Python
#! /usr/bin/env python
|
|
from subprocess import check_output
|
|
|
|
|
|
def get_pass(account):
|
|
return check_output("pass mail/" + account + "/password", shell=True).splitlines()[
|
|
0
|
|
]
|