create/update 'Almost line-speed file-copy using netcat.md' file
This commit is contained in:
13
Almost line-speed file-copy using netcat.md
Normal file
13
Almost line-speed file-copy using netcat.md
Normal 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
|
||||
```
|
||||
Reference in New Issue
Block a user