#!/bin/sh
#    popencode: encode enclosure file
#	$1 src_name_with_path
#	$2 dst_path
#	$3 dst_name
/bin/cp $1 $2/$3
/usr/ucb/compress -f $2/$3
/usr/bin/uuencode $2/$3.Z $3.Z > $2/$3.ENC
exec /bin/rm -f $2/$3.Z
