New tap for tethereal: io statistics that provides frames/bytes counts for frames...
[obnox/wireshark/wip.git] / make-faq
1 #!/bin/sh -x
2 #
3 # $Id: make-faq,v 1.1 2002/08/20 00:01:52 jmayer Exp $
4 #
5 # Make-faq - Creates a plain text version of the Ethereal FAQ
6 #       from http://www.ethereal.com/faq
7
8 FAQ=FAQ
9
10 rm -f $FAQ
11 cat >$FAQ <<EOF
12
13    The Ethereal FAQ
14
15    Note: This is just an ASCII snapshot of the faq and may not be up to
16          date. Please go to http://www.ethereal.com/faq for the up to
17          date version. The version of the snapshot can be found at the
18          end of this document.
19
20    INDEX
21
22 EOF
23
24 lynx -dump -nolist "http://www.ethereal.com/faq" | sed -e '1,/INDEX/d' >>FAQ
25
26 exit 0