Skip to content

Instantly share code, notes, and snippets.

@henchc
Created December 24, 2017 01:30
Show Gist options
  • Save henchc/0c5695e1577992e3a3993337ff8d5c5f to your computer and use it in GitHub Desktop.
Save henchc/0c5695e1577992e3a3993337ff8d5c5f to your computer and use it in GitHub Desktop.
removes temporary files generated by selenium and chrome or firefox and kills zombie processes
rm -rf __pycache__
rm -rf /tmp/tmp*
rm -rf /tmp/rust*
rm -rf /tmp/mozilla*
rm -rf /tmp/.org*
pkill firefox
pkill chrome
pkill Xvfb
pkill python
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment