diff options
author | Jörg Mayer <jmayer@loplof.de> | 2004-02-18 00:31:23 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2004-02-18 00:31:23 +0000 |
commit | b24c5701bd7c5da6e9d05bb7337eb2eac2106dad (patch) | |
tree | 1591a2130ef60d8966f5706b9dfd4b0eb5c8339f /make-faq | |
parent | 0a4e5cc16d8279e5be3b8f391b717f71822198cf (diff) | |
download | wireshark-b24c5701bd7c5da6e9d05bb7337eb2eac2106dad.tar.gz wireshark-b24c5701bd7c5da6e9d05bb7337eb2eac2106dad.tar.bz2 wireshark-b24c5701bd7c5da6e9d05bb7337eb2eac2106dad.zip |
Update make-faq to the new URL and the changed internal structure
of the FAQ.
Update the FAQ.
svn path=/trunk/; revision=10079
Diffstat (limited to 'make-faq')
-rwxr-xr-x | make-faq | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -1,9 +1,9 @@ #!/bin/sh # -# $Id: make-faq,v 1.7 2004/02/01 02:10:34 jmayer Exp $ +# $Id: make-faq,v 1.8 2004/02/18 00:31:22 jmayer Exp $ # # Make-faq - Creates a plain text version of the Ethereal FAQ -# from http://www.ethereal.com/faq +# from http://www.ethereal.com/faq.html rm -f FAQ cat >FAQ <<EOF @@ -11,18 +11,19 @@ cat >FAQ <<EOF The Ethereal FAQ Note: This is just an ASCII snapshot of the faq and may not be up to - date. Please go to http://www.ethereal.com/faq for the up to - date version. The version of this snapshot can be found at the - end of this document. + date. Please go to http://www.ethereal.com/faq.html for the up + to date version. The version of this snapshot can be found at + the end of this document. INDEX EOF -lynx -dump -nolist "http://www.ethereal.com/faq" | sed -e '1,/INDEX/d' >>FAQ +lynx -dump -nolist "http://www.ethereal.com/faq.html" | sed -e '1,/^Index/d' >>FAQ echo echo "Now verfiy everything is OK and copy FAQ to help/faq.txt" +echo "To verify run: diff -u help/faq.txt FAQ" echo exit 0 |