Removed useless use of cat

This commit is contained in:
Agam Agarwal 2016-07-22 11:21:32 +05:30
parent 87540fec49
commit 3250be5beb

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: