This script will display system status of you box


################################################
# This script will give you infomation on the  #
# Linux system you are currently on            #
#############################################SFL
 echo
        echo "*** Current date and time ***"
        date; echo
        echo
        echo "*** Current memory information (in MB) ***"
        free -mt
        echo
        echo "*** Current cpu information ***"
        cat /proc/cpuinfo | egrep processor\|name\|MHz\|bogomips
        echo
        echo "*** Current filesysten information ***"
        df -hlT
        echo
        if [ `which procinfo` ]; then
                echo "*** Current system information ***"
                uname -a
                procinfo -r | egrep -v gcc\|Mem\|buffers\|Swap
        fi