chezmoi/dot_offlineimap.py
2025-09-22 14:15:42 +02:00

8 lines
188 B
Python

#! /usr/bin/env python
from subprocess import check_output
def get_pass(account):
return check_output("pass mail/" + account + "/password", shell=True).splitlines()[
0
]