summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFeRD (Frank Dana) <ferdnyc@gmail.com>2017-07-08 11:43:51 (GMT)
committerFeRD (Frank Dana) <ferdnyc@gmail.com>2017-07-08 11:43:51 (GMT)
commit872f767fecea8bcd6f26fadcaf8d03ae98b5fdfc (patch)
tree53e3ff1d49e32ae6d997f8d473703dc19cceae48
parent6ad3a983dbf3a25273e04051d29022c72c469cd5 (diff)
downloadlz4-872f767fecea8bcd6f26fadcaf8d03ae98b5fdfc.zip
lz4-872f767fecea8bcd6f26fadcaf8d03ae98b5fdfc.tar.gz
lz4-872f767fecea8bcd6f26fadcaf8d03ae98b5fdfc.tar.bz2
Fix formatting of concatenation example
The "Concatenation of .lz4 files" section contains example commands that are run together on one line, making them invalid. Wrap them in a code block and clean up surrounding formatting.
-rw-r--r--programs/lz4.1.md8
1 files changed, 2 insertions, 6 deletions
diff --git a/programs/lz4.1.md b/programs/lz4.1.md
index 6f42904..c6b99bc 100644
--- a/programs/lz4.1.md
+++ b/programs/lz4.1.md
@@ -63,15 +63,11 @@ Default behaviors can be modified by opt-in commands, detailed below.
It is possible to concatenate `.lz4` files as is.
`lz4` will decompress such files as if they were a single `.lz4` file.
For example:
+
lz4 file1 > foo.lz4
lz4 file2 >> foo.lz4
-then
- lz4cat foo.lz4
-
-is equivalent to :
- cat file1 file2
-
+Then `lz4cat foo.lz4` is equivalent to `cat file1 file2`.
OPTIONS
-------