Sat Feb 12 04:11:07 GMT+2 2000 -- Hmm this is outdated, replace src/minclass with ~/kissme_classpath and fix up the references

To trace the classes loaded by the interpreter, specify -DTRACE_LOADED_CLASSES in the top-level make file and just run your program.

The output will be in loaded_classes.txt.

To remove duplicates do,

cat loaded_classes.txt | sort | uniq | grep -v "src/minclass" > unique_loaded_classes.txt

Then to build a zip file from these, go to src/minclass and issue

 ~/archive/zlib-1.1.3/contrib/minizip/minizip kissme_bare.zip $(cat ../../unique_loaded_classes.txt)

Where minizip is the zip utility

then

 mv kissme_bare.zip ../.. 

