Merge pull request #202 from igorshubovych/cat

Pages: cat
waldyrious/alt-syntax
Romain Prieto 2014-05-13 09:33:17 +10:00
commit 4ccc41d737
1 changed files with 11 additions and 0 deletions

11
pages/common/cat.md Normal file
View File

@ -0,0 +1,11 @@
# cat
> Print and concatenate files.
- Print the contents of *file1* to the standard output
`cat {{file1}}`
- Sequentially print the contents of *file1* and *file2* to the file *file3*.
`cat {{file1}} {{file2}} > {{file3}}`