top of page
Search

How to Looking for specific files in another directory in linux?

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


Post: Blog2_Post
gkTechnical Blog

Subscribe to Stay Up to Date with the Latest Tech News

Get the latest content straight to your inbox. Enter your email below.

Subscribe Form

©2020 by gkTech.

bottom of page