Skip to content

nc file transfere

at receiver machine .. make it listen to any port .. say 12345
nc -l -p 12345 > file_to_be_recieved.file
at sender part
nc Reciever_ip_address 12345 < file_to_be_send.file
download netcat from here