#!/bin/sh 

VER="3.2.2"
SCRIPTPATH="/usr/local/bin/"
MANPATH="/usr/local/man/man1/"

echo "Copying ./rfc-$VER to $SCRIPTPATH/rfc"
cp ./rfc-$VER -f $SCRIPTPATH/rfc
echo "Copying the man page to $MANPATH"
cp ./rfc.1 $MANPATH
echo "Done"
echo 
echo "Run the command  \"rfc -i\" as root to download the rfc-index"
