Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为了同步我的家庭和工作文件系统,我需要通过中间计算机并使用端口转发。让我们调用家用计算机 A、中间计算机 B 和工作计算机 C。我从命令行执行此操作
ssh -N -f -L 2025:C:22 me_B@B && unison foo ssh://me_C@localhost:2025/foo
ssh -N -f -L 2025:C:22 me_B@B & pid=$! # ssh PID rc=$? # ssh return code # set up to kill ssh when this script finishes function finish { kill $pid } trap finish EXIT [ $rc -eq 0 ] && unison foo ssh://me_C@localhost:2025/foo