I have a directory named classes
which contains a lot of sub-directories -
classes
|-security
|-registration
|-service
....
Each of these directory contains a lot of java
files and their compiled classes files. I want to remove all the class file.
Going to classes
directory I can list out all the class file using find command -
$ find . -name *.class
Is there any command in linux to remove all the classes file under the classes
directory.