📄 multiplex.sh
字号:
# $OpenBSD: multiplex.sh,v 1.10 2005/02/27 11:33:30 dtucker Exp $# Placed in the Public Domain.CTL=$OBJ/ctl-socktid="connection multiplexing"if grep "#define.*DISABLE_FD_PASSING" ${BUILDDIR}/config.h >/dev/null 2>&1then echo "skipped (not supported on this platform)" exit 0fiDATA=/bin/ls${EXEEXT}COPY=$OBJ/ls.copyLOG=$TEST_SSH_LOGFILEstart_sshdtrace "start master, fork to background"${SSH} -Nn2 -MS$CTL -F $OBJ/ssh_config -oSendEnv="_XXX_TEST" somehost &MASTER_PID=$!# Wait for master to start and authenticatesleep 5verbose "test $tid: envpass"trace "env passing over multiplexed connection"_XXX_TEST=blah ${SSH} -oSendEnv="_XXX_TEST" -S$CTL otherhost sh << 'EOF' test X"$_XXX_TEST" = X"blah"EOFif [ $? -ne 0 ]; then fail "environment not found"fiverbose "test $tid: transfer"rm -f ${COPY}trace "ssh transfer over multiplexed connection and check result"${SSH} -S$CTL otherhost cat ${DATA} > ${COPY}test -f ${COPY} || fail "ssh -Sctl: failed copy ${DATA}" cmp ${DATA} ${COPY} || fail "ssh -Sctl: corrupted copy of ${DATA}"rm -f ${COPY}trace "ssh transfer over multiplexed connection and check result"${SSH} -S $CTL otherhost cat ${DATA} > ${COPY}test -f ${COPY} || fail "ssh -S ctl: failed copy ${DATA}" cmp ${DATA} ${COPY} || fail "ssh -S ctl: corrupted copy of ${DATA}"rm -f ${COPY}trace "sftp transfer over multiplexed connection and check result"echo "get ${DATA} ${COPY}" | \ ${SFTP} -S ${SSH} -oControlPath=$CTL otherhost >$LOG 2>&1test -f ${COPY} || fail "sftp: failed copy ${DATA}" cmp ${DATA} ${COPY} || fail "sftp: corrupted copy of ${DATA}"rm -f ${COPY}trace "scp transfer over multiplexed connection and check result"${SCP} -S ${SSH} -oControlPath=$CTL otherhost:${DATA} ${COPY} >$LOG 2>&1test -f ${COPY} || fail "scp: failed copy ${DATA}" cmp ${DATA} ${COPY} || fail "scp: corrupted copy of ${DATA}"rm -f ${COPY}for s in 0 1 4 5 44; do trace "exit status $s over multiplexed connection" verbose "test $tid: status $s" ${SSH} -S $CTL otherhost exit $s r=$? if [ $r -ne $s ]; then fail "exit code mismatch for protocol $p: $r != $s" fi # same with early close of stdout/err trace "exit status $s with early close over multiplexed connection" ${SSH} -S $CTL -n otherhost \ exec sh -c \'"sleep 2; exec > /dev/null 2>&1; sleep 3; exit $s"\' r=$? if [ $r -ne $s ]; then fail "exit code (with sleep) mismatch for protocol $p: $r != $s" fidonetrace "test check command"${SSH} -S $CTL -Ocheck otherhost || fail "check command failed" trace "test exit command"${SSH} -S $CTL -Oexit otherhost || fail "send exit command failed" # Wait for master to exitsleep 2ps -p $MASTER_PID >/dev/null && fail "exit command failed" cleanup
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -