Attach multiple times to a single screen session

gnu-screen

I've been using screen -dRaA -S x to open up a single session between different workstations as I move about. Handy.

Is it possible to connect multiple times to a single session, though, without disconnecting others? When I have two machines I'm quickly moving between even reconnecting starts to slow me down.

Best Answer

Try

screen -aAxR -S x

-x is the option that does what you want.

Related Question