rice

personal dot files and scripts for linux and macOS
Log | Files | Refs | README | LICENSE

offlineimap.py (160B)


      1 #! /usr/bin/env python2
      2 from subprocess import check_output
      3 
      4 def get_pass(account):
      5     return check_output("pash show " + account, shell=True).splitlines()[0]