How to Looking for specific files in another directory in linux?Ganesh KadamAug 5, 20201 min readIn 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
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