mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-10-31 10:17:58 +01:00
ncat
ncat: create page
This commit is contained in:
parent
ac600a36e0
commit
f7b7265c3e
1 changed files with 12 additions and 0 deletions
12
pages/linux/ncat.md
Normal file
12
pages/linux/ncat.md
Normal file
|
@ -0,0 +1,12 @@
|
|||
# ncat
|
||||
|
||||
> `cat` over networks
|
||||
> 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`
|
Loading…
Reference in a new issue