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`