From 97082565bf31684b9bb3d5d3d10ba89775aec96c Mon Sep 17 00:00:00 2001 From: Adnan Ahmed Date: Sun, 2 Apr 2017 07:37:46 +0400 Subject: [PATCH] Fix cat command description --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c88dd37..5d6015c 100644 --- a/README.md +++ b/README.md @@ -119,9 +119,15 @@ $ touch trick.md ``` ### c. `cat` -Places standard input into file. Means that it opens the file in terminal for you to edit +It can be used for the following purposes under UNIX or Linux +Display text files on screen +Copy text files +Combine text files +Create new text files ```bash -cat > filename +cat filename +cat file1 file2 +cat file1 file2 > newcombinedfile ``` ### d. `more`