user123456 Asked: 2016-12-16 08:17:33 +0800 CST2016-12-16 08:17:33 +0800 CST 2016-12-16 08:17:33 +0800 CST 如何通过 ssh 发送连续流 772 给定一个命名管道,如何通过 ssh 发送该管道的连续流? netcat我正在寻找的等价物是 来自客户 dd if=myfifo | nc -l 12345 从服务器 nc <client IP> 12345 > stream ssh video-streaming stream 1 个回答 Voted Best Answer parkamark 2016-12-16T08:24:26+08:002016-12-16T08:24:26+08:00 cat source.data | ssh ${hostname} 'cat > destination.data' 或者: ssh ${hostname} 'cat > destination.data' < source.data
或者: