How to Looking for specific files in another directory in linux?
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