Skip to content

Instantly share code, notes, and snippets.

@ivanrosolen
Created January 4, 2016 13:24
Show Gist options
  • Save ivanrosolen/3c874119dc949e057662 to your computer and use it in GitHub Desktop.
Save ivanrosolen/3c874119dc949e057662 to your computer and use it in GitHub Desktop.
check.sh
#!/bin/bash
result=`ps aux | grep -i "/path/file.php args" | grep -v "grep" | wc -l`
if [ $result -eq 0 ]
then
php /path/file.php args >> /path/file.log &
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment