home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HTML - Publishing on the Internet
/
html_cdrom.iso
/
tools
/
html
/
windows
/
check
/
geterwrn.sh
< prev
next >
Wrap
Linux/UNIX/POSIX Shell Script
|
1995-02-21
|
141b
|
8 lines
#!/bin/sh
#
#Script to discard everything in HTMLCHEK output but ERROR! and Warning!
#messages.
#
egrep '(ERROR!|Warning!)' $@
exit 0