Fix cat command description

This commit is contained in:
Adnan Ahmed 2017-04-02 07:37:46 +04:00 committed by GitHub
parent f5d5d96690
commit 97082565bf
1 changed files with 8 additions and 2 deletions

View File

@ -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`