#!/bin/csh -f
if ($?MEETINGS) then
	set mtgs=$MEETINGS
else
	set mtgs=~/.meetings	
endif
awk -F: '{print "discuss," $4 ":" $5 ",*"}' $mtgs >/tmp/zdsc$$
echo "discuss,*,%me%" >>/tmp/zdsc$$
zctl load /tmp/zdsc$$
rm /tmp/zdsc$$
exit 0
