Looking Files in Linux?
The easiest way to look for file(s) in Linux we can use command locate. Just simply type locate (file you want to)
example:
locate http
You can combine with grep, so you can find files more specific.
locate http | grep etc
It will find all of files named http in directory etc.
For using locate, you need to make index firts with command updatedb. The complete command will be.
updatedb
locate http | grep etc
example:
locate http
You can combine with grep, so you can find files more specific.
locate http | grep etc
It will find all of files named http in directory etc.
For using locate, you need to make index firts with command updatedb. The complete command will be.
updatedb
locate http | grep etc