From 24290acc9c33ab9b09e8025a062b9c1950f13e50 Mon Sep 17 00:00:00 2001 From: Joris van Rantwijk Date: Sat, 25 Jun 2022 17:20:43 +0200 Subject: [PATCH] Fix README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0e50902..68732b0 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ It is similar to the Unix `sort` utility. But where `sort` works with lines of text, SortBin works with fixed-length binary data records. SortBin reads input from a file, sorts it, and writes the sorted data to an output file. -These files contain flat, raw arrays of fixed-length binary data records. +These files contain flat, raw arrays of binary data records. Records are interpreted as fixed-length strings of 8-bit unsigned integers. These records are sorted in lexicographic order. @@ -27,7 +27,7 @@ SortBin has only been tested on Linux. To use SortBin, you must compile the source code. Clone the repository, then build as follows: ``` -git clone https://github.com/jorisvr/... +git clone https://github.com/jorisvr/sortbin.git cd sortbin make ```