I want to use subprocess.check_output() with ps -A | grep \'process_name\'. I tried various solutions but so far nothing worked. Can someone guide
subprocess.check_output()
ps -A | grep \'process_name\'
command = "ps -A | grep 'process_name'" output = subprocess.check_output(["bash", "-c", command])