Skip to content

Instantly share code, notes, and snippets.

@frullah
Last active March 15, 2022 17:09
Show Gist options
  • Save frullah/0a98a84d5a0b4617e943589e23de019e to your computer and use it in GitHub Desktop.
Save frullah/0a98a84d5a0b4617e943589e23de019e to your computer and use it in GitHub Desktop.
shutdown until process finishes
# shutdown until process finishes
#
## arguments
# first argument is a PID
pid=$1
while true
do
if ! ps -p $pid > /dev/null
then
sudo shutdown -h now
fi
sleep 5
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment