home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / fchek284.zip / fcl2vcg.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1995-05-26  |  273b  |  9 lines

  1. #!/bin/sh
  2. #
  3. #  Script to select out the VCG graph description from ftnchek output
  4. #
  5. #  Input may be from stdin or from files.  Output is to stdout.
  6.  
  7.     sed -n '/^VCG description/,/End of VCG description/p' $* \
  8.     |grep -v '^VCG description' |grep -v '^End of VCG description'
  9.