|
@@ -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")
|
|
|
"$@"
|