<div dir="ltr">Here's a simple bash script if you want to run CommandLines.java to achieve significant speed up (like 3x) compared to Java JIT compiling multiple times.<div><br></div><div>find ../data -name '*.x3d' | grep -v new | xargs java -cp "../java;../../../X3DJSAIL.4.0.full.jar" net.coderextreme.CommandLines</div><div><br></div><div>This says find all files in the ../data folder ending in .x3d, except for the ones named *new*  the pass those to the Java command which looks for CommandLines.class in ../java and X3DJSAIL in ../../../X3DJSAIL.4.0.full.jar.</div><div><br></div><div>There are slight modifications for Linux.</div><div><br></div>John</div>