#!/bin/sh
#requires the following
#free, hostname, grep, cut, awk, uname
HOSTNAME=`hostname -s`
TODAY=`date`
IP_ADDRS=`ifconfig | grep 'inet addr' | grep -v '255.0.0.0' | cut -f2 -d':' | awk '{print $1}'`
IP_ADDRS=`echo $IP_ADDRS | sed...
#requires the following
#free, hostname, grep, cut, awk, uname
HOSTNAME=`hostname -s`
TODAY=`date`
IP_ADDRS=`ifconfig | grep 'inet addr' | grep -v '255.0.0.0' | cut -f2 -d':' | awk '{print $1}'`
IP_ADDRS=`echo $IP_ADDRS | sed...



