How to search particular types of files like .java,.class in a specific directory using unix command? I want list of all .java files in a directory
Asked
Active
Viewed 46 times
1 Answers
2
find /path/to/directory/ -name "*.java" -print
This will list all the files ending .java from the specified path

theMerakist
- 239
- 2
- 14