#!/bin/csh
foreach file ($*)
	rm -f $file-1
	ln $file $file-1
	touch $file+1
end
