Skip to content

Instantly share code, notes, and snippets.

@drakmail
Created August 20, 2012 09:22
Show Gist options
  • Select an option

  • Save drakmail/3402612 to your computer and use it in GitHub Desktop.

Select an option

Save drakmail/3402612 to your computer and use it in GitHub Desktop.
#!/bin/bash
PROGRAM1="motion"
APPCHK=$(ps aux | grep -c $PROGRAM1)
if [ $APPCHK = '1' ]; then
echo "OFFLINE"
else
echo "ONLINE"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment