#!/bin/csh -f
#
# Usage: checkOutAll [<Dir>]
#
#
set startDir = .;
if ("$#argv" == 1) then
	set startDir = $1;
endif
find $startDir -type d -exec _doCOs {} \;

