Skip to content

Instantly share code, notes, and snippets.

View CptLemming's full-sized avatar

Ashley Wilson CptLemming

View GitHub Profile
# Install xapian & python bindings to a virtualenv
#
# Build dependencies are for CentOS
#
# Assumptions:
# - destination virtualenv is activated
#
# Starting point was this Vagrant box:
# - http://developer.nrel.gov/downloads/vagrant-boxes/CentOS-6.4-x86_64-v20130731.box
# - Also installed:
@CptLemming
CptLemming / docker_kill.sh
Created April 12, 2017 08:14 — forked from evanscottgray/docker_kill.sh
kill all docker containers at once...
docker ps | awk {' print $1 '} | tail -n+2 > tmp.txt; for line in $(cat tmp.txt); do docker kill $line; done; rm tmp.txt