It is time for spring cleaning my hard disk at home. I am sorting/deleting files that I no longer use. I will post here files that I do not need now, but might need in the future.
So… I found a small linux shell script that individually compiles every java file in a directory and all its subdirectories. The code is:
#!/bin/bash
for d in `ls`
do
javac $d/*.java > $d/compile.txt
done
The text file can be found here: batchcompile