From b5fd3c6008232f071688d8790a75581aaeb992a8 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Mon, 6 Aug 2012 14:51:56 -0400 Subject: [PATCH] stylistic tweaks --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b2c617b..1620a02 100644 --- a/README.md +++ b/README.md @@ -1,27 +1,27 @@ -== Overview +== Overview == POC to compile a data set into a modified radix tree, and applying huffman encoding. -== Usage +== Usage == Take in an v1 x509 certificate, and extract the content sets, output them to newline delimited output - $> ruby ./thing.rb d this-cert.pem > this-cert.list + `$> ruby ./thing.rb d this-cert.pem > this-cert.list` Process this output to generate the compiled output - $> ruby ./thing.rb c this-cert.list + `$> ruby ./thing.rb c this-cert.list` This would produce a file named 'this-cert.bin' Then, the unpack the binary with: - $> ./unpack this-cert.bin + `$> ./unpack this-cert.bin` -== Code compiles +== Code compiles == To compile the 'unpack' command, just run `make`. ( this requires make, gcc, and zlib-devel)