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\'
You can try the pipe functionality in sh.py:
import sh print sh.grep(sh.ps("-ax"), "process_name")