Como @ StéphaneChazelas menciona, você pode usar pgrep
- da página man:
The pgrep command searches the process table on the running system and prints the process IDs of all processes that match the criteria given on the command line.
SERVICE='Google Chrome'
if pgrep -xq -- "${SERVICE}"; then
echo running
else
echo not running
fi