Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Phoenix124/bae13b7763d5e05d76e7327b28980255 to your computer and use it in GitHub Desktop.
Save Phoenix124/bae13b7763d5e05d76e7327b28980255 to your computer and use it in GitHub Desktop.
Chrome process kill
for pid in $(ps -ef | grep "chromedriver" | awk '{print $2}'); do kill -9 $pid; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment