I am working on a script that needs to perform an action in every sub-directory of a specific folder.
What is the most efficient way to write that?
for D in `find . -type d` do //Do whatever you need with D done