From 22c9e0ece5fa9d5ba042f0506f24f8269502c8eb Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Sat, 14 Mar 1998 18:05:51 +0000 Subject: New file. --- doc/posix1003.1/summarize | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 doc/posix1003.1/summarize (limited to 'doc/posix1003.1/summarize') diff --git a/doc/posix1003.1/summarize b/doc/posix1003.1/summarize new file mode 100755 index 0000000000..397676c97d --- /dev/null +++ b/doc/posix1003.1/summarize @@ -0,0 +1,33 @@ +#! /bin/sh +# +# Generate the summary chapter +# +# $Id$ +# + +echo "@c" +echo "@c DO NOT EDIT -- AUTOMATICALLY GENERATED!!!" +echo "@c" +echo +echo "@chapter Compliance Summary" +echo + +summarize_chapter() +{ + grep "^@chapter" $1 | sed -e "s/^.chapter/@section/" + echo + num_functions=`grep "()" $1 | wc -l` + echo "Functions: ${num_functions}" + echo +} + +chapters="ch01.t ch02.t ch03.t ch04.t ch05.t ch06.t ch07.t ch08.t \ + ch09.t ch10.t ch11.t ch12.t ch13.t ch14.t ch15.t ch16.t ch17.t ch18.t" +for chapter in ${chapters} +do + summarize_chapter $chapter +done + + + + -- cgit v1.2.3