#!/bin/csh -f
# If Accom device name = accom

onintr cleanup
if ( $?TEMP ) then
	set TMP = $TEMP/$$.yuv
else
	set TMP = /usr/tmp/$$.yuv
endif
rcp accom:$1:r $TMP
iflip -Y $TMP stdout

cleanup:
rm -f $TMP
