> How can I delete files recursively in all subdirectories with .java > extension?
find . -name '*.java' | xargs rm find . -name '*.java' will find and print all the file names with java extension; xargs is used to pass these names to rm, which will then remove those. Einar.