#! /bin/csh
foreach f (+*)
	set noglob
	echo mv $f `expr $f : '\+\(.*\)'`
	mv $f `expr $f : '\+\(.*\)'`
end
