shivcena
shivcena

Reputation: 2053

How to find a file in linux from terminal window

Actually i want to search a file which is located some where in the system. Im having debian linux and i need to search using terminal.

Upvotes: 0

Views: 81

Answers (1)

user2314737
user2314737

Reputation: 29317

Use the find command, for example

find . -name "foo.*"

to search for all files named foo.* in the current directory.

Here is the manual page documentation.

Upvotes: 1

Related Questions