|
|
|
|
|
by niggler
4869 days ago
|
|
To solve both complaints, just tar -c on the ingress and tar -x on the egress: sender$ tar -c file | nc -l 12345
recipient$ nc addr 12345 | tar -x
This will create a file on the recipient side with the specified name and properties (and you run the sender command first) |
|
sender$ tar -c awesome.jpg | nc -l 0.0.0.0 12345
(waiting forever)
recipient$ nc 255.255.255.255 12345 | tar -x
tar: This does not look like a tar archive
tar: Exiting with failure status due to previous errors