6 lines
138 B
Python
6 lines
138 B
Python
#! /usr/bin/env python3
|
|
from subprocess import check_output
|
|
|
|
def get_pass():
|
|
return check_output("pass mail", shell=True).strip("\n")
|