aboutsummaryrefslogtreecommitdiffstats
path: root/make-faq
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2003-01-29 12:58:48 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2003-01-29 12:58:48 +0000
commit463d203c6a1bae9ff1595fd64e9a86debd0a8ff5 (patch)
tree98a297466f8cf21757187668ed51e1ad6e9277e9 /make-faq
parentd8f02eb5ec1efd2353eb28d01e00efb8cf0b08bf (diff)
Add the FAQ to the help menu
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7033 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'make-faq')
-rwxr-xr-xmake-faq7
1 files changed, 5 insertions, 2 deletions
diff --git a/make-faq b/make-faq
index cc5deed60d..88b05d8a1d 100755
--- a/make-faq
+++ b/make-faq
@@ -1,6 +1,6 @@
#!/bin/sh -x
#
-# $Id: make-faq,v 1.1 2002/08/20 00:01:52 jmayer Exp $
+# $Id: make-faq,v 1.2 2003/01/29 12:58:45 jmayer Exp $
#
# Make-faq - Creates a plain text version of the Ethereal FAQ
# from http://www.ethereal.com/faq
@@ -14,7 +14,7 @@ cat >$FAQ <<EOF
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 the snapshot can be found at the
+ date version. The version of this snapshot can be found at the
end of this document.
INDEX
@@ -23,4 +23,7 @@ EOF
lynx -dump -nolist "http://www.ethereal.com/faq" | sed -e '1,/INDEX/d' >>FAQ
+# Create an #include'able version for gtk/help_dlg.c
+sed -e 's/\\/\\\\/g' -e 's/"/\\"/g' -e 's/^/"/' -e 's/$/\\n"/' <FAQ >FAQ.include
+
exit 0