Merge pull request #500 from rselwyn/cat-quickFix

Fixed up cat.md
waldyrious/alt-syntax
Igor Shubovych 2015-12-31 00:58:31 +02:00
commit e05ba80a2a
1 changed files with 6 additions and 2 deletions

View File

@ -2,10 +2,14 @@
> Print and concatenate files.
- Print the contents of *file1* to the standard output
- Print the contents of a file to the standard output
`cat {{file1}}`
`cat {{file}}`
- Concatenate several files into the target file.
`cat {{file1}} {{file2}} > {{target-file}}`
- Append serveral files into the target file.
`cat {{file1}} {{file2}} >> {{target-file}}`