Created
May 20, 2018 22:48
-
-
Save nevmerzhitsky/e0105f78d1066b86fde62f059e7aaf4b to your computer and use it in GitHub Desktop.
Restart a daemon screen with a script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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