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