我有一个脚本,我想nc
从监听模式开始10.10.10.11
,但我想从10.10.10.10
这个脚本开始
ssh -n 10.10.10.11 nc -l 8023 | mbuffer -s 128k -m 1G | zfs receive $zfsPath
zfs send $newestSnap | mbuffer -s 128k -m 1G | nc -w 60 10.10.10.11 8023
问题是,如果我从那时执行脚本,10.10.10.10
它将不会在执行完第一行后继续,因为nc
现在正在等待/监听端口 8023 上的连接。
问题
我想从执行上述操作10.10.10.10
,但如何让它在第一行之后继续?
答案1
尝试
ssh -n 10.10.10.11 "nc -l 8023 | mbuffer -s 128k -m 1G | zfs receive $zfsPath &"
zfs send $newestSnap | mbuffer -s 128k -m 1G | nc -w 60 10.10.10.11 8023
这将运行命令并将其置于后台,以允许控制传递到下一行。
我手头没有 zfs 系统,所以用
ssh -n remote.tld "nc -l 8023 | wc -l >/tmp/test &"
ls | nc -w 60 remote.tld 8023
并且正确的输出出现在远程/tmp/test
文件中。