- 
      
 - 
        
Save pvieytes/ce23e82314ce6f8d81df39acde8bbdd8 to your computer and use it in GitHub Desktop.  
    Python: "source" a shell script and read variables
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | from subprocess import Popen, PIPE | |
| from os import environ | |
| def source(script, update=True, clean=True): | |
| """ | |
| Source variables from a shell script | |
| import them in the environment (if update==True) | |
| and report only the script variables (if clean==True) | |
| """ | |
| global environ | |
| if clean: | |
| environ_back = dict(environ) | |
| environ.clear() | |
| pipe = Popen(". %s; env" % script, stdout=PIPE, shell=True) | |
| data = pipe.communicate()[0] | |
| env = dict((line.split("=", 1) for line in data.splitlines())) | |
| if clean: | |
| # remove unwanted minimal vars | |
| env.pop('LINES', None) | |
| env.pop('COLUMNS', None) | |
| environ = dict(environ_back) | |
| if update: | |
| environ.update(env) | |
| return env | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment