1

Below is my command

find <path> -type d -name "FY09"

I need to have recursive search under path

senyor
  • 119
  • 1
  • 5

1 Answers1

0

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*"
CodeIt
  • 3,492
  • 3
  • 26
  • 37