: /bin/sh #/* #************************************************************************* #** * #** Copyright (C) 1997 Trans-Mit Pty. Ltd. Melbourne Australia * #** This software may not be loaned, resold, changed or copied * #** in any way without the express written permission of author * #** and Trans-Mit Pty. Ltd., Australia. * #** * #************************************************************************* #** #** $Header $ #** $Author: catcom $ #** $Date: 1997/12/23 11:39:48 $ #** $Locker: $ #** #************************************************************************* #*/ PATH=$PATH:/u/catcom/bin PACKERLOGFILE=/u/catcom/clp/log RMCLOGFILE=/u/catcom/clp/rmc.log echo "Current Logging Status" tail -20 $PACKERLOGFILE echo "Hit to continue"; read x echo "Current Disk Status" df -v echo "Hit to continue"; read x echo "Current Process Status" ps -ax echo "Hit to continue"; read x echo "Error Log" more $PACKERLOGFILE.err echo "Hit to continue"; read x echo "Remove old calls Log" more $RMCLOGFILE echo "Hit to continue"; read x echo "Daily stats" more $PACKERLOGFILE.daily echo "Hit to continue"; read x echo "Hourly stats" more $PACKERLOGFILE.hourly echo "Hit to continue"; read x echo "Working log file" more $PACKERLOGFILE echo "Hit to continue"; read x exit #/* #** $Log: dostatus,v $ # Revision 1.4 97/12/23 11:39:48 catcom # added error log & remove old calls log # # Revision 1.3 97/12/22 17:10:10 catcom # added disk staus & process status # # Revision 1.2 97/12/22 16:22:24 catcom # moved tail of log file to first item to be shown # # Revision 1.1 97/12/17 14:43:53 catcom # Initial revision # #** $Revision: 1.4 $ #** $Source: /u/catcom/AccTraf/src/pcclu/RCS/dostatus,v $ #** $State: Exp $ #*/