mirror of
https://github.com/Idnan/bash-guide.git
synced 2018-11-09 02:29:39 +01:00
Fix cat command description
This commit is contained in:
parent
f5d5d96690
commit
97082565bf
1 changed files with 8 additions and 2 deletions
10
README.md
10
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`
|
||||
|
|
Loading…
Reference in a new issue