#!/bin/sh . ./vars SOCKDIR=$(mktemp -d) SOCKF=${SOCKDIR}/usock # Start tmux, if needed if ! tmux ls | grep -q rshell; then tmux new -s rshell -d fi # Create window # Let's just see it works tmux new-window -t rshell "socat UNIX-LISTEN:${SOCKF},umask=0077 STDIO" # Wait for socket while test ! -e ${SOCKF} ; do sleep 1 ; done # Use socat to ship data between the unix socket and STDIO. exec socat STDIO UNIX-CONNECT:${SOCKF}