ncat: add page (#1620)

coverage
Starbeamrainbowlabs 2017-11-08 19:35:52 +00:00 committed by GitHub
commit 4b9550be70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

11
pages/linux/ncat.md Normal file
View File

@ -0,0 +1,11 @@
# ncat
> Use the normal `cat` functionality over networks.
- Listen for input on the specified port and write it to the specified file:
`ncat -l {{port}} > {{/path/to/file}}`
- Write output of specified file to the specified host on the specified port:
`ncat {{address}} {{port}} < {{/path/to/file}}`