#!/bin/bash tor=`/etc/init.d/tor status | grep status | awk '{print $3}'` if [ $tor = started ]; then # echo "\${color green}started\$color" echo "started" else # echo "\${color red}stopped\$color" echo "stopped" fi