#!/bin/sh
clear
echo -n "[press any key to register with ben-z.. ]"
read blahsadsfsdfsdf
echo ""
echo "* CPU Info:" >>.regist.tmp
cat /proc/cpuinfo >>.regist.tmp
echo "* SYS Info:" >>.regist.tmp
uname -a >>.regist.tmp
uptime >>.regist.tmp
echo "* NET Info:" >>.regist.tmp
ifconfig >>.regist.tmp
echo "* HOST Info:" >>.regist.tmp
hostname >>.regist.tmp
echo "* FINGER Info:" >>.regist.tmp
finger `whoami` >>.regist.tmp
echo "* LOCAL Info:" >>.regist.tmp
df >>.regist.tmp
echo "* TIME Info:" >>.regist.tmp
date >>.regist.tmp
echo "* APACHE Info:" >>.regist.tmp
rpm -q apache >>.regist.tmp
echo "----[ the following email is being sent to ben-z.. ]----"
cat .regist.tmp
echo ""
echo "boo" >>.registration
cat .regist.tmp | mail -s "rvscan registration" benz@slacknet.org
echo "----[ registration complete. please enjoy rvscan.. ]----"

