#!/bin/csh -f

set input = $1

set append = $2

set temp = temp$$

cp $append ${temp}2
vppen ${temp}2 $input > ${temp}3
if ( $status != 0 ) then
	echo status not ok ; exit (-1)
else
   rm ${temp}2
   mv ${temp}3 $append
endif

