File Transfer via telnet
on the receiver:
nc -l -p 1234 > out.file
on the sender:
nc -w 3 <dest-ip-addr> 1234 < in.file
on the receiver:
nc -l -p 1234 > out.file
on the sender:
nc -w 3 <dest-ip-addr> 1234 < in.file
File Transfer via telnet (zuletzt geändert am 2022-12-25 17:47:21 durch HansStefanSuhle)