#!/bin/csh -f
set names = ()
foreach i (`ls -1 RCS | cut -d, -f1`)
	if (-f $i) set names = ($i $names)
end
ls -lg $names | grep rw
