]> git.ipfire.org Git - thirdparty/snort3.git/commitdiff
fixup READMEs
authorRuss Combs <rucombs@cisco.com>
Wed, 10 Dec 2014 20:58:24 +0000 (15:58 -0500)
committerRuss Combs <rucombs@cisco.com>
Wed, 10 Dec 2014 20:58:24 +0000 (15:58 -0500)
README
extra/README

diff --git a/README b/README
index e3002b22bc7ac84ba0d67c00ae72a7e12074ec6d..18e73868a4b2c7671525c45e10dcbc914d0f7150 100644 (file)
--- a/README
+++ b/README
@@ -45,7 +45,7 @@ DEPENDENCIES
 If you already build Snort, you may have everything you need.  If not, grab the latest:
 
 * autotools or cmake to build from source
-* g++ &gt;= 4.8 or other C++11 compiler
+* g++ >= 4.8 or other C++11 compiler
 * daq from http://www.snort.org for packet IO
 * dnet from http://code.google.com/p/libdnet/ for network utility functions
 * LuaJIT from http://luajit.org for configuration and scripting
@@ -58,8 +58,8 @@ DOWNLOAD
 
 There are two sets of source tarballs, once for autotools and one for cmake.  snort-3 contains the base program and snort_extra has example plugins.
 
-    snort-3.0.0-a1-129-auto.tar.gz
-    snort-3.0.0-a1-129-cmake.tar.gz
+    snort-3.0.0-a1-130-auto.tar.gz
+    snort-3.0.0-a1-130-cmake.tar.gz
 
 BUILD SNORT
 
index 1575875e9269d4446114b4ccf9b85caa9a1c4748..6edae65415569973394c4261ba6d389f8c320dd3 100644 (file)
@@ -25,8 +25,8 @@ DOWNLOAD
 
 There are two extra tarballs, once for autotools and one for cmake:
 
-    snort_extra-1.0.0-a1-129-auto.tar.gz
-    snort_extra-1.0.0-a1-129-cmake.tar.gz
+    snort_extra-1.0.0-a1-130-auto.tar.gz
+    snort_extra-1.0.0-a1-130-cmake.tar.gz
 
 BUILD EXTRAS
 
@@ -45,7 +45,7 @@ To build with autotools, simply do the usual from the top level directory:
 
 To build with cmake, do the following:
 
-    mkdir build &amp;&amp; cd build
+    mkdir build && cd build
     cmake ..
     make -j 8 install
 
@@ -63,7 +63,7 @@ You can edit $my_path/lib/snort_extra/loggers/alert.lua to tweak the output form
 
 The last example demonstrates a LuaJIT rule option called find.  The rule, supplied on stdin, uses the Lua [[ multiline string ]] delimiters to avoid shell escape issues:
 
-    echo 'alert tcp any any -&gt; any 80 ( sid:1; msg:"test"; http_method; find:"pat = [[GET]]"; )' | \
+    echo 'alert tcp any any -> any 80 ( sid:1; msg:"test"; http_method; find:"pat = [[GET]]"; )' | \
         $my_path/bin/snort -c $my_path/etc/snort/snort.lua -r pcap \
             -A cmg --script-path $my_path/lib/snort_extra --stdin-rules