Opened this issue 3 years ago · 1 comments
grepOutput = subprocess.run("gfrep -w NAME /etc/os-release", capture_output=True, shell=True)
should be
grepOutput = subprocess.run("grep -w NAME /etc/os-release", capture_output=True, shell=True)
This has been fixed in e0c57c9