Skip to content

Instantly share code, notes, and snippets.

@tuxmartin
Created February 24, 2016 22:37
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 tuxmartin/dcba8707ce3e7bb0d26a to your computer and use it in GitHub Desktop.
Save tuxmartin/dcba8707ce3e7bb0d26a to your computer and use it in GitHub Desktop.
#!/bin/bash
export LANG=C
while [[ true ]] ; do
kill `ps aux | grep "google-chrome" | awk '{print $2}' | head -n 1`
if [ $? -eq 1 ]
then
break
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment