use find command in linux
find / -name 'httpdocs' -type d
the fist parameter "/" is where to look in this case "/" the entire system.
-name could be -iname to ignore case
also -type is not mandatory
use : man find for more options
the fist parameter "/" is where to look in this case "/" the entire system.
-name could be -iname to ignore case
also -type is not mandatory
use : man find for more options
Comments