Files
MarkdownNotes/howto - netcat file copy.md
chawley 65c434952a Catagorized Notes
Renamed notes to fit categories and be easier to find later: blog, config, howto
2023-04-28 10:31:11 -04:00

13 lines
158 B
Markdown

# Almost line-speed file-copy using netcat
Receiving end:
```shell
nc -l -p 9999 | tar xvfp -
```
Sender:
```shell
tar cfp - /PATH/ | nc RECEIVER 9999
```