Directory transfer
Server (192.168.1.9)
$ tar -cvf â dir\_name | nc -l 8000
Client
$ nc -n 192.168.1.9 8000 | tar -xvf -
Suppose you want to transfer a directory over the network from A to B.
Comments
Server (192.168.1.9)
$ tar -cvf â dir\_name | nc -l 8000
Client
$ nc -n 192.168.1.9 8000 | tar -xvf -
Suppose you want to transfer a directory over the network from A to B.