Below is my command
find <path>  -type d  -name "FY09"
I need to have recursive search under path
Below is my command
find <path>  -type d  -name "FY09"
I need to have recursive search under path
 
    
     
    
    find is recursive but if you are searching for directories that start with a string you should use wild card character *
find <path> -type d -name "FY09*"
 
    
    