summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Collet <Cyan4973@users.noreply.github.com>2017-07-08 11:48:32 (GMT)
committerGitHub <noreply@github.com>2017-07-08 11:48:32 (GMT)
commitef065551001fefff800771ddd75bf114d13f245c (patch)
tree53e3ff1d49e32ae6d997f8d473703dc19cceae48
parent6ad3a983dbf3a25273e04051d29022c72c469cd5 (diff)
parent872f767fecea8bcd6f26fadcaf8d03ae98b5fdfc (diff)
downloadlz4-ef065551001fefff800771ddd75bf114d13f245c.zip
lz4-ef065551001fefff800771ddd75bf114d13f245c.tar.gz
lz4-ef065551001fefff800771ddd75bf114d13f245c.tar.bz2
Merge pull request #373 from ferdnyc/patch-2
Fix formatting of concatenation example
-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
-------