Skip to content

Instantly share code, notes, and snippets.

@devNoiseConsulting
Last active April 1, 2018 16:16
Show Gist options
  • Select an option

  • Save devNoiseConsulting/a9b066141b007387bcb0327875e43bd9 to your computer and use it in GitHub Desktop.

Select an option

Save devNoiseConsulting/a9b066141b007387bcb0327875e43bd9 to your computer and use it in GitHub Desktop.
nukeItFromOrbit.sh - Script to kill processes and start them up again. "It’s the only way to be sure."
#!/bin/sh
ps -ef | egrep "\.py|\./run" | cut -b10-15 | xargs kill -9
sleep 1
sudo systemctl restart mysql
sleep 1
cd ~/PoGoMap/
nohup ./run1.sh 2>&1 >/dev/null &
sleep 1
nohup ./run.sh 2>&1 >/dev/null &
sleep 1
cd ~/PokeAlarm/
nohup ./run.sh 2>&1 >/dev/null &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment