Merge pull request #966 from AgamAgarwal/useless-cat

Removed useless use of cat
waldyrious/alt-syntax
Felix Yan 2016-07-22 04:44:49 -05:00 committed by GitHub
commit 1a40b65b77
1 changed files with 2 additions and 2 deletions

View File

@ -16,11 +16,11 @@
- Serve a file:
`cat somefile.txt | nc -l {{port}}`
`nc -l {{port}} < {{somefile.txt}}`
- Receive a file:
`nc {{ip_address}} {{port}} > somefile.txt`
`nc {{ip_address}} {{port}} > {{somefile.txt}}`
- Server stay up after client detach: