every time that I'll send a thing from computer A to computer B with nc, I to use these commands,
Computer A
tar cfp - film.mp4 | nc -w 3 192.168.xxx.xx 1234
Computer B
nc -l -p 1234 | tar xvfp -
My question, I have openssh, how can send mine videos, file, directories,.. with ssh and nc, without to used other programmes like rsync, tar, sftp,...
Very thanks for your recommendations!
scpdirectly?nchere when SSH is being used.