chezmoi/dot_offlineimap.py

9 lines
188 B
Python
Raw Permalink Normal View History

2025-09-22 14:15:42 +02:00
#! /usr/bin/env python
from subprocess import check_output
def get_pass(account):
return check_output("pass mail/" + account + "/password", shell=True).splitlines()[
0
]