4.4BSD/usr/src/contrib/bib/macs/Install

#!/bin/csh
# Install dir file1 file2 ...
foreach f ( $argv[2-] )
	rm -f $1/$f
	cp $f $1/$f
	end