In HTTP-over-TCP, handle more than one HTTP message in a TCP segment.
[obnox/wireshark/wip.git] / make-faq
1 #!/bin/sh
2 #
3 # $Id: make-faq,v 1.6 2003/12/21 03:16:48 jmayer Exp $
4 #
5 # Make-faq - Creates a plain text version of the Ethereal FAQ
6 #       from http://www.ethereal.com/faq
7
8 rm -f FAQ
9 cat >FAQ <<EOF
10
11    The Ethereal FAQ
12
13    Note: This is just an ASCII snapshot of the faq and may not be up to
14          date. Please go to http://www.ethereal.com/faq for the up to
15          date version. The version of this snapshot can be found at the
16          end of this document.
17
18    INDEX
19
20 EOF
21
22 lynx -dump -nolist "http://www.ethereal.com/faq" | sed -e '1,/INDEX/d' >>FAQ
23
24 echo
25 echo "Now verfiy everything is OK and move FAQ to help/faq.txt"
26 echo
27
28 exit 0