#!/bin/csh
#
# Sample link example - Ron Dippold
#
# This is how I handle multiple votes.  I have a vote/ directory
# right off my home directory which contains everything.  This vote/
# directory contains all incoming votes and bounces, and all running
# votes are subdirectories.  I have a work/ directory which has
# compiled versions of all the UseVote programs, as well as customized
# versions of files such as acktext.txt.  When I want to make a new
# vote, I go to my vote/ directory and type "newvote foobar".  This
# script sets everything up.  Then I just edit usevote.cfg and make
# a new cfv1 from cfv using uvcfv.
#
#
mkdir $1
cd $1
link ~/vote/work/cfv cfv
copy ~/vote/work/usevote.cfg .
copy ~/vote/work/usevote.rul .
link ~/vote/work/acktext.txt acktext.txt
link ~/vote/work/uvack uvack
link ~/vote/work/uvballot uvballot
link ~/vote/work/uvbounce uvbounce
link ~/vote/work/uvcfv uvcfv
link ~/vote/work/uvcount uvcount
link ~/vote/work/uvdup uvdup
link ~/vote/work/uvvote uvvote
link ~/vote/work/uvshell uvshell


