create/update 'Almost line-speed file-copy using netcat.md' file

This commit is contained in:
anonymous
2023-04-25 21:21:02 -04:00
parent 4e01e3a4eb
commit c1330a5951

View File

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