search directory name

on

For the kidz I had to find the dir with the sinterklaas movies. Could also be Sinterklaas or sint or Sint. So I have to find the dir with ‘sint’ in it’s name:

find . -type d -iname ‘*sint*’

find in recursive dirs from this point (find .) a dirname (type -d) which contains the string ‘sint’ case-insensive (-iname ‘*sint*’)