Zet - Creating a bash function to search directories using fzf

Creating a bash function to search directories using fzf

sdir () {
  cd $(find ~/ -maxdepth 3 -type d | fzf)
}

#bash