mirror of
https://github.com/Ascyii/dotfiles.git
synced 2026-01-01 06:54:24 -05:00
6 lines
154 B
Python
6 lines
154 B
Python
#! /usr/bin/env python
|
|
from subprocess import check_output
|
|
|
|
def get_pass(account):
|
|
return check_output("pass " + account, shell=True).splitlines()[0]
|