📝How to: transfer file using telnet (and netcat)
- tags
on the receiver:
nc -l -p 1234 > out.file
on the sender:
nc -w 3 <dest-ip-addr> 1234 < in.file
source:
on the receiver:
nc -l -p 1234 > out.file
on the sender:
nc -w 3 <dest-ip-addr> 1234 < in.file
source: