How to Search for files by extension in linux?
- Ganesh Kadam
- Aug 6, 2020
- 1 min read
To look for files with a certain extension, add it to the command.
find . -name *.txt
Output
./test/subtest/subfil.txt
./test/gk22.txt
./test/gk1.txt
./home1/gks32.txt
./home2/gk22.txt
./qa/tags.txt
Comments