浏览代码

remove pty code entirely instead of making unreachable

Daniel Sheffield 2 月之前
父节点
当前提交
ef56bc22d3
共有 1 个文件被更改,包括 1 次插入11 次删除
  1. 1 11
      capture.sh

+ 1 - 11
capture.sh

@@ -38,15 +38,5 @@ EOF
 trap 'info' EXIT
 
 exec 2> >(tee -a "$DAT" "$ERR")
-if which socat 1>/dev/null 2>&1 && false && ! [ "$PROG" = "sudo" ]
-then
-	tty="$(tty)"
-	socat PTY,rawer,link="$PTY" EXEC:"$(shell_escape tee -a "$DAT" "$OUT" "$tty")" &
-	socat="$!"
-	while ! [ -e "$PTY" ]; do sleep 0.01; done
-	stty -F "$PTY" rows "$LINES" cols "$COLUMNS"
-	exec 1> "$PTY"
-else
-	exec 1> >(tee -a "$DAT" "$OUT")
-fi
+exec 1> >(tee -a "$DAT" "$OUT")
 "$@"