Skip to content

Instantly share code, notes, and snippets.

@jimlinntu
Created August 31, 2018 14:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jimlinntu/c3f85aeabf14fbc772b8206525a91d32 to your computer and use it in GitHub Desktop.
Save jimlinntu/c3f85aeabf14fbc772b8206525a91d32 to your computer and use it in GitHub Desktop.
GCPHelper
while :
do
echo "Sleep awhile"
sleep 10m
# Check if there is python process
if [[ $(ps -ef | grep -c 'python train.py') == 1 ]]; then
sudo shutdown now
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment