(cmd:str)
| 48 | |
| 49 | |
| 50 | def popen(cmd:str) -> str: |
| 51 | with subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True).stdout as source: |
| 52 | return source.read().decode(encoding="utf-8") |
| 53 | |
| 54 | |
| 55 | def getenv(key_name, pick=False): |
no outgoing calls
no test coverage detected