blob: 264404a7d333e1b89173c055edafbf1e07a8f823 (
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 AppPasswords/" + account, shell=True).splitlines()[0]
|