#!/bin/bash
DIR="$1"
for i in $DIR/*
do
if test -d $i
then
	echo "$i"
fi
done | column

