#!/bin/sh
for i in *; do
	case "$i" in
	.* | cmd | configs | contrib | docs | makefiles | scripts) ;;
	*) find -- "$i" -prune -type d ;;
	esac
done
