Download file
Server (192.168.1.9)
$ nc -lv 8000 < file.txt
Client
$ nc -nv 192.168.1.9 8000 > file.txt
Suppose you want to transfer a file âfile.txtâ from server A to client B.
Comments
Server (192.168.1.9)
$ nc -lv 8000 < file.txt
Client
$ nc -nv 192.168.1.9 8000 > file.txt
Suppose you want to transfer a file âfile.txtâ from server A to client B.