#!/bin/sh # File to chk your current network status-config wise that is # admin@wickedmind.com # 06/02/00 # Let's run the current ifconfig and place in a temp file /sbin/ifconfig > /tmp/network # Add the current date to the tempfile /bin/date >> /tmp/network # Take a look at whats going on more /tmp/network # Remove the temp file, no one needs to look at it rm -f /tmp/network # Exit gracefully, make sure there are no parents exit 0;