Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 10 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您可以通过观察
scp
的工作来做到这一点。读取端执行scp -f
,写入端执行scp -t
。如果您使用 FIFO 等适当地将它们互连,您可以看到它们是如何交互的。Yo can do so by watching
scp
do its work. Reading side doesscp -f <source>
and the writing side doesscp -t <target>
. If you interconnect them appropriately with FIFOs or so, you can see how exactly they interact.