#!/bin/bash

for cat in $(find . -mindepth 1 -type d | grep -v svn); do
	if [ ! -f  ${cat}/qet_directory ]; then
		echo ${cat}
	fi
done
