Bash – How to run “find -exec

Best Answer

You are missing the space between {} and ; :

find . -type d -exec ./script.sh {} \;

Related Question