How to Looking for specific files in another directory in linux?
- Ganesh Kadam
- Aug 5, 2020
- 1 min read
In our case, we will look for all those starting with the letters file in the test directory.
find ./test -name file*
Output
./test/file22.txt
./test/file30.doc
./test/file1.txt
./test/file5,doc
Comments