This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
# Ruby script to find top-level empty directories in a working SVN directory tree | |
# | |
# A directory is considered empty, if there are zero files reachable through this directory (excluding | |
# files under .svn directories). That means that a directory containing other empty directories is | |
# also empty (recursively). The algorithm will consolidate the output so that it only contains | |
# top-level empty directories, but not their sub-directories. | |
# | |
# The output of this script can be used, for example to remove non-used parts of a SVN repository: | |
# ruby empty_dirs.rb | xargs svn del |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Available versions: http://downloads.eucalyptus.com/software/euca2ools/2.0/source/ | |
export VERSION="2.0.0" | |
export WORKING_DIR=~/Downloads/euca2install | |
mkdir -p ${WORKING_DIR} | |
cd ${WORKING_DIR} | |
# install dependencies | |
# you can also use port instead: sudo port install swig-python | |
brew install swig |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 Attila Incze <http://atimb.me> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |