ubuntu下nc传输文件

在A机器上有database目录,需要传输到B机  A机器IP:10.10.10.1

A机器: tar -cf - /home/database  | nc -l 5677

B机器: nc 10.10.10.1 5677 | tar -xf -