6 lines
160 B
Python
6 lines
160 B
Python
|
|
#! /usr/bin/env python2
|
||
|
|
from subprocess import check_output
|
||
|
|
|
||
|
|
def get_pass(account):
|
||
|
|
return check_output("pass Mail/" + account, shell=True).splitlines()[0]
|