Skip to content

Instantly share code, notes, and snippets.

Created June 4, 2011 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/1008056 to your computer and use it in GitHub Desktop.
Save anonymous/1008056 to your computer and use it in GitHub Desktop.
TwiProwlが落ちてたら再度上げるシェルスクリプト。cronから動かす用
#!/bin/sh
ps ax | grep ' TwiProw[l]'
if [ $? -eq 1 ]; then
cd /path/to/TwiProwl/
./twiprowl
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment