when I ps -af | grep rv I get lots of result even with something that has service
ps -af | grep rv
but I am looking for searching specific process named rv
Just append the -w argument to grep
ps -af | grep -w rv