#!/bin/csh -f
#
# kitsend
#
# Uses kit to send the important files in the PELKS
# directory to the addresses listed as arguments.
#
# Bertrand Meyer, 2 September 1994
#

set sender = "bertrand@eiffel.com"

if ($#argv < 1) then
	echo kitsend requires at least one argument \(recipients\' e-mail addresses\)

else

	set recipient_list = ""
	@ i = 1
	while ($i <= $#argv)
		set recipient_list = ($recipient_list "-m" $argv[$i])
		@ i = $i + 1
	end
	kit -a $sender -M -s "Kernel Library Standard" \
		$recipient_list \
		README STANDARD TITLE STANDARDTOC.doc FRONT FLATSHORTS \
		APPENDICES STANDARDIX.doc STANDARD.ps ascii bin lib
endif
