The README File.
AKA, How you can do what we did.

The files in this folder are the two hacked-together scripts that we used to quickly generate 99 Hydrogen Drumkits.

First, we spent a month organizing and sorting all the sample sets we'd gathered from all over the world.

Once those were arranged into folders, we did this:

$  CWD=$(pwd) && for DIR in * ; do cd $DIR && ~/bin/genhydro.sh . && cd $CWD ; done

Which is a silly way to run a Python script that should really have been written so that such a shell command was not necessary. Maybe I'll touch the python script up some day.

Next I ran the h2rename.sh script, which went into each directory, changed the .tar.gz files to .h2drumkit in name only, and copied the drumkits to some other directory for storage.

Done.

Bottom Line: don't try to use these scripts if you have no idea what you're doing, but if you have a bunch of samples and know how to do some basic coding, these scripts might be a handy starting point.