#!/bin/sh
echo numargs=$#
for i in $*
do
#	if [ -d $i ]
	if test -d $i
	then
		echo $i
	fi
done
