DEV Community

Poopcoder
Poopcoder

Posted on • Originally published at poopcode.com on

1 1

How to attach to an existing tmux session?

To get the list of existing tmux session use tmux ls command.

> tmux ls
0: 1 windows (created Wed Dec 16 16:45:19 2020)
Enter fullscreen mode Exit fullscreen mode

Here there is one session that already exists. To attach to this particular session ‘0’ we can use the following command.

> tmux attach-session -t 0
Enter fullscreen mode Exit fullscreen mode

This will open the existing tmux session.

Top comments (0)

Qodo Takeover

Introducing Qodo Gen 1.0: Transform Your Workflow with Agentic AI

Rather than just generating snippets, our agents understand your entire project context, can make decisions, use tools, and carry out tasks autonomously.

Read full post

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay