home *** CD-ROM | disk | FTP | other *** search
/ HTML - Publishing on the Internet / html_cdrom.iso / tools / html / windows / check / geterwrn.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1995-02-21  |  141b  |  8 lines

  1. #!/bin/sh
  2. #
  3. #Script to discard everything in HTMLCHEK output but ERROR! and Warning!
  4. #messages.
  5. #
  6. egrep '(ERROR!|Warning!)' $@
  7. exit 0
  8.