This helped me to resolve java.lang.ClassNotFoundException. Bash command scans jar files in the folder and prints who contains given class.
1 |
find . -name '*.jar' -print0 | xargs -0 -I '{}' sh -c 'jar tf {} | grep Hello.class && echo {}' |