#!/bin/csh -f
foreach i ($argv[*])
	if ( -d $i ) then
		foreach file ($i/*)
			if ( -d $file ) echo $file
		end
	endif
end
