1
0
Fork 0

Fix README

This commit is contained in:
Joris van Rantwijk 2022-06-25 17:20:43 +02:00
parent 0696549e5e
commit 24290acc9c
1 changed files with 2 additions and 2 deletions

View File

@ -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. 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. 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. Records are interpreted as fixed-length strings of 8-bit unsigned integers.
These records are sorted in lexicographic order. 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. To use SortBin, you must compile the source code.
Clone the repository, then build as follows: Clone the repository, then build as follows:
``` ```
git clone https://github.com/jorisvr/... git clone https://github.com/jorisvr/sortbin.git
cd sortbin cd sortbin
make make
``` ```