Skip to content

Instantly share code, notes, and snippets.

@nevmerzhitsky
Created May 20, 2018 22:48
Show Gist options
  • Save nevmerzhitsky/e0105f78d1066b86fde62f059e7aaf4b to your computer and use it in GitHub Desktop.
Save nevmerzhitsky/e0105f78d1066b86fde62f059e7aaf4b to your computer and use it in GitHub Desktop.
Restart a daemon screen with a script
set -e
OWN_PID=$$
SCREEN_TITLE=my-script
# Find all screen apps with the title, but skip yourself (this executed script)
SCREEN_PIDS=$(pgrep -f $SCREEN_TITLE | grep -v $OWN_PID | paste -s -d ,)
if [[ -n "$SCREEN_PIDS" ]]; then
# Kill all children processes of found screens
pkill -P $SCREEN_PIDS || true
fi
screen -dmS $SCREEN_TITLE bash -c './script.sh > script.log'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment