Catagorized Notes
Renamed notes to fit categories and be easier to find later: blog, config, howto
This commit is contained in:
13
howto - netcat file copy.md
Normal file
13
howto - netcat file copy.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