Reputation: 2053
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
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