Hi all,
I have a file named "Gautam" saved in my machine in some particular location.I want to find the exact location of the file in the file system by writting a command but i dont have any idea of what command would serve the needful for me.Please help me with the command.
Thank you
use below command,
find / -name Gautam.*
or
locate Gautam
find / -name Gautam.*
in the above command what is the need of / as if i do
find -name Gautam.*
then also it works
Please explain
have u tried the same without / from root?
/ means to look into dir and subdir also.