HI, When looking for stuff find is your friend - you can use to to search for none Apache licenses or other stuff:
In the source this:
find . -name "*.*" -exec grep -i "James" {} \; -print 2>/dev/null
Shows this:
./net/sf/saxon/regex/JDK15RegexTranslator.java
And in the binary:
find . -name "*.*" -exec grep -i "JDK15RegexTranslator" {} \; -print 2>/dev/null
Shows:
./saxon9.jar
Justin
