#!/bin/csh

@ x =0
foreach i ($argv)
	@ x++
	cat help.doc $argv[$x] > temp.doc
	rm help.doc
	mv temp.doc help.doc
end
exit 0

