From b5175c1c58f6819bef7fae34fc07ca9d36ed6da0 Mon Sep 17 00:00:00 2001 From: Igor Shubovych Date: Sun, 22 Nov 2015 23:09:29 +0200 Subject: [PATCH 1/2] cat: fix tokens --- pages/common/cat.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/common/cat.md b/pages/common/cat.md index 30185776c5..b44925361d 100644 --- a/pages/common/cat.md +++ b/pages/common/cat.md @@ -6,6 +6,6 @@ `cat {{file1}}` -- Sequentially print the contents of *file1* and *file2* to the file *file3*. +- Concatenate several files into the target file. -`cat {{file1}} {{file2}} > {{file3}}` +`cat {{file1}} {{file2}} {{file3}} > {{target-file}}` From 1cb680cdc809af03e0dac74c0d44e8238cede889 Mon Sep 17 00:00:00 2001 From: Igor Shubovych Date: Tue, 24 Nov 2015 00:05:54 +0200 Subject: [PATCH 2/2] cat: minor fix --- pages/common/cat.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/cat.md b/pages/common/cat.md index b44925361d..3122ae4713 100644 --- a/pages/common/cat.md +++ b/pages/common/cat.md @@ -8,4 +8,4 @@ - Concatenate several files into the target file. -`cat {{file1}} {{file2}} {{file3}} > {{target-file}}` +`cat {{file1}} {{file2}} > {{target-file}}`