#!/bin/bash
#set -x
#set -v
#which colm
DIR="$1"
for i in `ls $DIR`
do
#echo $i
if test -d $DIR/$i
then
	echo "$i"
fi
done | column
#done
