aboutsummaryrefslogtreecommitdiffstats
path: root/make-faq
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2004-02-18 00:31:23 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2004-02-18 00:31:23 +0000
commitc5c5a9d9e56600cb53e3492d9ede13ff59605319 (patch)
tree1591a2130ef60d8966f5706b9dfd4b0eb5c8339f /make-faq
parentd124008efbc17ed7cfad68a39b5accc2a27698e0 (diff)
Update make-faq to the new URL and the changed internal structure
of the FAQ. Update the FAQ. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10079 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'make-faq')
-rwxr-xr-xmake-faq13
1 files changed, 7 insertions, 6 deletions
diff --git a/make-faq b/make-faq
index fa6bfd0d39..5d5abcaed0 100755
--- a/make-faq
+++ b/make-faq
@@ -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