Verifique se o processo está ativo no shell

#!/bin/sh
if [ -z "$(ps aux|grep ruby |grep -v grep)" ]; then
echo
"ruby process is dead"
fi