#!/bin/csh -f
#
if ($#argv < 1) exit
foreach file ($argv)
    if (-e .$file) mv .$file $file
end
