<div dir="ltr">I've been pretty happy about this bash command to suss out which of the files in my folder are not validating with X3DJSAIL.  Perhaps others will find it useful, with modifications.<div><br></div><div>$ for i in `find . -name '*.x3d' | grep -v new `; do java -cp ../../../X3DJSAIL.4.0.full.jar org.web3d.x3d.jsail.CommandLine -validate $i 2>&1 | egrep success >/dev/null|| echo $i; done<br>./AllenDutton.x3d<br>./ArtDecoExamples.x3d<br>./ArtDecoPrototypes.x3d<br>.[snip]</div><div><br></div><div>Next step is to remove "| grep -v new" as a filter to see if the X3DJSAIL produced files from the originals pass.</div><div><br></div><div>John</div></div>