Find
Count number of directories in current directory
find . -maxdepth 1 -type d | wc -l
Details at https://stackoverflow.com/a/17648137
Find directories containing a specific pattern
find ./ -type d -name "qlever-ui"
find . -maxdepth 1 -type d | wc -l
Details at https://stackoverflow.com/a/17648137
find ./ -type d -name "qlever-ui"