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\'
Also, try to use 'pgrep' command instead of 'ps -A | grep 'process_name'
'pgrep'
'ps -A | grep 'process_name'