We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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)