top of page
Search

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

164 views0 comments

コメント


Post: Blog2_Post
bottom of page