find . -type d
can be used to find all directories below some start point. But it returns the current directory (.
) too, which may be undesired. How can it be excluded?
find . -type d
can be used to find all directories below some start point. But it returns the current directory (.
) too, which may be undesired. How can it be excluded?