#!/bin/bash
#set -x
#set -v
for j in $@
  do
	DIR="$j"
	for i in `ls $DIR`
		do
			if test -d $DIR/$i
			then
				echo "$DIR/$i"
			fi
		done
  done
