1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 07:35:42 +02:00

Merge pull request #202 from igorshubovych/cat

Pages: cat
This commit is contained in:
Romain Prieto 2014-05-13 09:33:17 +10:00
commit 4ccc41d737

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