head	1.5;
access;
symbols;
locks; strict;
comment	@# @;


1.5
date	2003.09.01.03.00.56;	author dunc;	state Exp;
branches;
next	1.4;

1.4
date	2001.05.05.11.50.19;	author dunc;	state Exp;
branches;
next	1.3;

1.3
date	99.07.22.23.44.12;	author dr;	state Exp;
branches;
next	1.2;

1.2
date	98.05.27.03.50.12;	author dunc;	state Exp;
branches;
next	1.1;

1.1
date	98.05.27.03.48.42;	author dunc;	state Exp;
branches;
next	;


desc
@Checks "hee" files for common error reports
@


1.5
log
@Check for "not exist"
@
text
@#!/bin/sh
# $Id: chkhee,v 1.2 2003/08/29 07:12:05 dunc Exp $
if [ -z "$1" ];then f=hee;else f=$1;fi
grep -in warn $f /dev/null
grep -in error $f /dev/null
grep -iwn no $f /dev/null
grep -iwn exit $f /dev/null
grep -iwn fault $f /dev/null
grep -iwn bad $f /dev/null
grep -in fail $f /dev/null
grep -wn not $f /dev/null|egrep 'found|exist'
@


1.4
log
@Added test for the word "bad"
@
text
@d2 1
a2 1
# $Id: chkhee,v 1.3 1999/07/22 23:44:12 dr Exp dunc $
d11 1
a11 1
grep -wn not $f /dev/null|grep found
@


1.3
log
@Also look for "not found"
@
text
@d2 1
a2 1
# $Id: chkhee,v 1.2 1998/05/27 03:50:12 dunc Exp dr $
d9 1
@


1.2
log
@Look for "fault" as in "Segmentation fault"
@
text
@d2 1
a2 1
# $Id: $
d10 1
@


1.1
log
@Initial revision
@
text
@d2 1
d8 1
@
